frequi_origin/tests/unit/ValuePair.spec.ts
2021-03-10 16:35:14 +01:00

13 lines
357 B
TypeScript

import { mount } from '@vue/test-utils';
import ValuePair from '@/components/general/ValuePair.vue';
describe('ValuePair.vue', () => {
it('renders description when passed', () => {
const msg = 'Test description';
const wrapper = mount(ValuePair, {
propsData: { description: msg },
});
expect(wrapper.text()).toMatch(msg);
});
});