codeceptjs-maildev-helper

0.0.4 • Public • Published

codeceptjs-maildev-helper

Maildev integration for CodeceptJS.

Installation

npm install --save-dev codeceptjs-maildev-helper

Configuration

in codecept.json:

  ...
  "helpers": {
    ...
    "MaildevHelper": {
      "require": "./node_modules/codeceptjs-maildev-helper"
      "port": 12325
    }
  },
  ...

port is optional. Default value is 1025.

You may run

codeceptjs def

to 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

Package Sidebar

Install

npm i codeceptjs-maildev-helper

Weekly Downloads

4

Version

0.0.4

License

MIT

Unpacked Size

5.6 kB

Total Files

4

Last publish

Collaborators

  • kuzjka