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

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