NWJS_Hour_Tracking/tests/unit/App.test.js
The Jared Wilcurt 0c4f455122 Testing
2019-09-16 00:49:40 -04:00

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