16 lines
413 B
TypeScript
16 lines
413 B
TypeScript
import { shallowMount } from '@vue/test-utils';
|
|
import UploadButton from '@/components/UploadButton.vue';
|
|
import '@/plugins/vuetify';
|
|
|
|
describe('UploadButton.vue', () => {
|
|
it('renders props.title when passed', () => {
|
|
const title = 'upload a file';
|
|
const wrapper = shallowMount(UploadButton, {
|
|
slots: {
|
|
default: title,
|
|
},
|
|
});
|
|
expect(wrapper.text()).toMatch(title);
|
|
});
|
|
});
|