1
0
Fork 0
faetale/test/NuxtLogo.spec.js
2021-12-24 22:14:52 -06:00

9 lines
235 B
JavaScript

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()
})
})