2019-04-16 01:39:47 +02:00

15 lines
267 B
JavaScript

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