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