11 lines
370 B
JavaScript
11 lines
370 B
JavaScript
/// <reference types="cypress" />
|
|
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');
|
|
});
|
|
});
|