10 lines
336 B
JavaScript
10 lines
336 B
JavaScript
import SendEmailDialog from 'src/components/common/SendEmailDialog.vue';
|
|
|
|
describe('<SendEmailDialog />', () => {
|
|
it('TODO: boilerplate', () => {
|
|
// see: https://on.cypress.io/mounting-vue
|
|
cy.createWrapper(SendEmailDialog, { props: { data: { address: '1234' } } });
|
|
cy.get('input').type('1234');
|
|
});
|
|
});
|