temp-disposable-email
Version:
Generating Temporary email address for testing, retrieving email from the temporary email address
8 lines • 307 B
JavaScript
import { generateEmail, getRecentEmail, } from './index';
Cypress.Commands.add('generateEmail', function (prefix) {
return cy.wrap(generateEmail(prefix));
});
Cypress.Commands.add('getRecentEmail', function (options) {
return cy.wrap(getRecentEmail(options));
});
//# sourceMappingURL=cypress.js.map