Scaffold test for Editor.vue

This commit is contained in:
Robert Schäfer 2019-04-10 20:27:32 +02:00
parent 6c6628fdb5
commit 11d217fa6b

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