import { expect } from 'chai'; import { mount } from '@vue/test-utils'; describe('Import .vue file', () => { it('should be able to import .vue file', () => { const Test = require('../fixtures/Test.vue'); const wrapper = mount(Test); expect(wrapper.text()).to.be.include('TEST'); // TODO }); });