Scaffold test for Editor.vue

This commit is contained in:
Robert Schäfer 2019-04-10 20:27:32 +02:00
parent 1fc76e0c4e
commit 5f456fe752

View File

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