boussole-pluss/frontend/test/Legend.spec.js

10 lines
228 B
JavaScript
Raw Normal View History

2022-10-07 14:15:53 +00:00
import { mount } from '@vue/test-utils'
import Legend from '@/components/Legend.vue'
describe('Legend', () => {
test('is a Vue instance', () => {
const wrapper = mount(Legend);
expect(wrapper.vm).toBeTruthy()
})
})