NWJS_Hour_Tracking/tests/unit/App.test.js

12 lines
251 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);
expect(wrapper.html())
.toMatchSnapshot();
});
});