vue3-vuetable
Version:
Datatable component for Vue 3.x
23 lines (17 loc) • 470 B
JavaScript
import { mount } from '@vue/test-utils'
import Vuetable from 'components/Vuetable.vue'
import {expect, describe, it} from '@jest/globals'
describe('Vuetable - HTML structure', () => {
const mountVuetable = (fields) => mount(Vuetable, {
propsData: {
loadOnStart: false,
fields
}
})
it('renders HTML table', () => {
const wrapper = mountVuetable([
'code', 'description'
])
expect(wrapper.element).toMatchSnapshot()
})
})