StackGenVis: Alignment of Data, Algorithms, and Models for Stacking Ensemble Learning Using Performance Metrics
https://doi.org/10.1109/TVCG.2020.3030352
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
697 B
22 lines
697 B
import { expect } from 'chai'
|
|
import { createLocalVue, mount, shallowMount } from '@vue/test-utils'
|
|
import PerfectScrollbar from '../../src/index'
|
|
describe('index.js', () => {
|
|
let localVue
|
|
|
|
beforeEach(function () {
|
|
localVue = createLocalVue()
|
|
})
|
|
|
|
it('Component PerfectScrollbar shoud exist after global register', () => {
|
|
localVue.use(PerfectScrollbar)
|
|
expect(localVue.options.components.PerfectScrollbar).to.be.a('function')
|
|
})
|
|
|
|
it('Component PerfectScrollbar with specific name "scroll" shoud exist after global register', () => {
|
|
localVue.use(PerfectScrollbar, {
|
|
name: 'scroll'
|
|
})
|
|
expect(localVue.options.components.scroll).to.be.a('function')
|
|
})
|
|
})
|
|
|