Files
boussole-pluss/frontend/test/Legend.spec.js
2022-10-07 16:15:53 +02:00

10 lines
228 B
JavaScript

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