1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-25 16:19:38 +02:00
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()
})
})