it-tools/test/Logo.spec.js
Corentin Thomasset c66e2097b6
chore: setup nuxt
2020-12-21 22:06:13 +01:00

9 lines
219 B
JavaScript

import { mount } from '@vue/test-utils'
import Logo from '@/components/Logo.vue'
describe('Logo', () => {
test('is a Vue instance', () => {
const wrapper = mount(Logo)
expect(wrapper.vm).toBeTruthy()
})
})