0.0.4 • Published 7 years ago
codeceptjs-maildev-helper v0.0.4
codeceptjs-maildev-helper
Maildev integration for CodeceptJS.
Installation
npm install --save-dev codeceptjs-maildev-helperConfiguration
in codecept.json:
...
"helpers": {
...
"MaildevHelper": {
"require": "./node_modules/codeceptjs-maildev-helper"
"port": 12325
}
},
...port is optional. Default value is 1025.
You may run
codeceptjs defto generate typescript definitions for all installed helpers - this adds code autocompletion to IDEs, which support TypeScript.
Usage
Configure your application to use local Maildev server (see Maildev docs).
In your CodeceptJS scenario use I.haveMailbox(address) to initialize mailbox and I.grabNextUnreadMail() to get email object.
For example:
Scenario('test email sending' async (I) => {
I.haveMailbox('john.doe@example.com');
I.amOnPage('/sendMeEmail');
I.fillField('email', 'john.doe@example.com');
I.click('Send Me Email!');
const email = await I.grabNextUnreadMail();
I.say('I have email: ' + email.subject);
});I.grabNextUnreadMail() returns Promise like all CodeceptJS grabber methods. It resolves to email object, which is used by Maildev and seems to conform Mailparser specification.
You may register more recepient addresses by adding more I.haveMailbox() calls.
License
MIT