diff --git a/webapp/components/Editor/Editor.spec.js b/webapp/components/Editor/Editor.spec.js new file mode 100644 index 000000000..19c50e1e3 --- /dev/null +++ b/webapp/components/Editor/Editor.spec.js @@ -0,0 +1,14 @@ +import { shallowMount } from '@vue/test-utils' +import Editor from './Editor.vue' + +describe('Editor.vue', () => { + let wrapper + + beforeEach(() => { + wrapper = shallowMount(Editor, {}) + }) + + it('renders', () => { + expect(wrapper.is('div')).toBe(true) + }) +})