sms-receiver/frontend/tests/unit/upload-button.spec.ts
Pablo Aramburo b639ed5157 [add] Initial commit
Boilerplate + sops encrypted envs
2022-08-22 14:17:56 -06:00

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