10 lines
247 B
TypeScript
10 lines
247 B
TypeScript
|
import { mount } from '@vue/test-utils'
|
||
|
import NuxtLogo from '@/components/NuxtLogo.vue'
|
||
|
|
||
|
describe('NuxtLogo', () => {
|
||
|
test('is a Vue instance', () => {
|
||
|
const wrapper = mount(NuxtLogo)
|
||
|
expect(wrapper.vm).toBeTruthy()
|
||
|
})
|
||
|
})
|