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