14 lines
277 B
JavaScript
14 lines
277 B
JavaScript
|
import { mount } from '@vue/test-utils'
|
||
|
import Home from '@/components/Home.vue'
|
||
|
|
||
|
describe('Home', () => {
|
||
|
test('is a Vue instance', () => {
|
||
|
const wrapper = mount(Home, {
|
||
|
stubs: {
|
||
|
NuxtLink: true,
|
||
|
},
|
||
|
});
|
||
|
expect(wrapper.vm).toBeTruthy()
|
||
|
})
|
||
|
})
|