mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
17 lines
297 B
JavaScript
17 lines
297 B
JavaScript
import { shallowMount } from '@vue/test-utils'
|
|
import Upload from '.'
|
|
|
|
describe('Upload', () => {
|
|
let wrapper
|
|
|
|
beforeEach(() => {
|
|
wrapper = shallowMount(Upload, {})
|
|
})
|
|
|
|
it('renders', () => {
|
|
expect(wrapper.is('div')).toBe(true)
|
|
})
|
|
|
|
// TODO: add more test cases in this file
|
|
})
|