mirror of
https://github.com/freqtrade/frequi.git
synced 2024-11-24 12:05:16 +00:00
14 lines
259 B
TypeScript
14 lines
259 B
TypeScript
|
import { mount } from '@cypress/vue';
|
||
|
import ValuePair from './ValuePair.vue';
|
||
|
|
||
|
it('renders a message', () => {
|
||
|
const msg = 'Test description';
|
||
|
mount(ValuePair, {
|
||
|
propsData: {
|
||
|
description: msg,
|
||
|
},
|
||
|
});
|
||
|
|
||
|
cy.get('label').contains(msg);
|
||
|
});
|