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.
218 lines
6.3 KiB
218 lines
6.3 KiB
import { mount } from '@vue/test-utils'
|
|
import { BTableSimple } from './table-simple'
|
|
|
|
describe('table-simple', () => {
|
|
it('has expected default classes', async () => {
|
|
const wrapper = mount(BTableSimple)
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(2)
|
|
expect(wrapper.text()).toBe('')
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('renders content from default slot', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
slots: {
|
|
default: 'foobar'
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(2)
|
|
expect(wrapper.text()).toContain('foobar')
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-striped" when striped=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
striped: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-striped')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-bordered" when bordered=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
bordered: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-bordered')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-borderless" when borderless=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
borderless: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-borderless')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-hover" when hover=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
hover: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-hover')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-sm" when small=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
small: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-sm')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-dark" when dark=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
dark: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-dark')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "border" when outlined=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
outlined: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('border')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "b-table-fixed" when fixed=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
fixed: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('table')).toBe(true)
|
|
expect(wrapper.classes()).toContain('b-table-fixed')
|
|
expect(wrapper.classes()).toContain('table')
|
|
expect(wrapper.classes()).toContain('b-table')
|
|
expect(wrapper.classes().length).toBe(3)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-responsive" when responsive=true', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
responsive: true
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('div')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-responsive')
|
|
expect(wrapper.classes().length).toBe(1)
|
|
expect(wrapper.find('table').classes()).toContain('table')
|
|
expect(wrapper.find('table').classes()).toContain('b-table')
|
|
expect(wrapper.find('table').classes().length).toBe(2)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
|
|
it('has class "table-responsive-md" when responsive=md', async () => {
|
|
const wrapper = mount(BTableSimple, {
|
|
propsData: {
|
|
responsive: 'md'
|
|
}
|
|
})
|
|
|
|
expect(wrapper).toBeDefined()
|
|
expect(wrapper.is(BTableSimple)).toBe(true)
|
|
expect(wrapper.is('div')).toBe(true)
|
|
expect(wrapper.classes()).toContain('table-responsive-md')
|
|
expect(wrapper.classes().length).toBe(1)
|
|
expect(wrapper.find('table').classes()).toContain('table')
|
|
expect(wrapper.find('table').classes()).toContain('b-table')
|
|
expect(wrapper.find('table').classes().length).toBe(2)
|
|
|
|
wrapper.destroy()
|
|
})
|
|
})
|
|
|