mirror of
https://github.com/IT4Change/Ocelot-Social.git
synced 2025-12-13 07:45:56 +00:00
Scaffold test for Editor.vue
This commit is contained in:
parent
6c6628fdb5
commit
11d217fa6b
14
webapp/components/Editor/Editor.spec.js
Normal file
14
webapp/components/Editor/Editor.spec.js
Normal 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)
|
||||
})
|
||||
})
|
||||
Loading…
x
Reference in New Issue
Block a user