Files
sample-full-skies/test/Logo.spec.js
2021-03-29 11:17:51 +02:00

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