NWJS_Hour_Tracking/tests/unit/App.test.js

12 lines
244 B
JavaScript
Raw Normal View History

2019-09-15 22:49:40 -06:00
import { shallowMount } from '@vue/test-utils';
import App from '@/App.vue';
describe('App.vue', () => {
test('Render default contents', () => {
const wrapper = shallowMount(App);
2020-01-23 17:43:40 -07:00
expect(wrapper)
2019-09-15 22:49:40 -06:00
.toMatchSnapshot();
});
});