UNPKG

@dcodegroup-au/vuetable-3

Version:

Datatable component for Vue 3.x built with Vite/ESM

22 lines (17 loc) 449 B
import Vue from 'vue' import { mount, shallow } from '@vue/test-utils' import Vuetable from '@/components/Vuetable.vue' describe('Vuetable - HTML structure', () => { const mountVuetable = (fields) => mount(Vuetable, { propsData: { loadOnStart: false, fields } }) it('renders HTML table', () => { let wrapper = mountVuetable([ 'code', 'description' ]) expect(wrapper.element).toMatchSnapshot() }) })