12 lines
251 B
JavaScript
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();
|
||
|
});
|
||
|
});
|