osm_my_commerce/test/Logo.spec.js

10 lines
219 B
JavaScript
Raw Permalink Normal View History

2020-12-16 13:56:07 +01:00
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()
})
})