mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 03:55:15 +00:00
9 lines
221 B
TypeScript
9 lines
221 B
TypeScript
import ValuePair from '@/components/general/ValuePair.vue';
|
|
|
|
it('renders a message', () => {
|
|
const msg = 'Test description';
|
|
cy.mount(ValuePair, { props: { description: msg } });
|
|
|
|
cy.get('label').contains(msg);
|
|
});
|