mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
15 lines
267 B
JavaScript
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)
|
|
})
|
|
})
|