2019-05-18 13:49:13 +02:00

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