NWJS_Hour_Tracking/tests/unit/App.test.js
2020-01-23 19:43:40 -05:00

12 lines
244 B
JavaScript

import { shallowMount } from '@vue/test-utils';
import App from '@/App.vue';
describe('App.vue', () => {
test('Render default contents', () => {
const wrapper = shallowMount(App);
expect(wrapper)
.toMatchSnapshot();
});
});