Files
full-stack-fastapi-template/frontend/tests/unit/upload-button.spec.ts

16 lines
413 B
TypeScript
Raw Normal View History

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