mirror of
https://github.com/CorentinTh/it-tools
synced 2026-05-06 04:20:45 +00:00
10 lines
219 B
JavaScript
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()
|
|
})
|
|
})
|