console-notifier

1.0.0 • Public • Published

console-notifier Build Status

Plugin for gemini and hermione to log some information to a console after tests finished.

Install

$ npm install console-notifier

Usage

gemini

Add the plugin to your configuration file:

module.exports = {
    system: {
        plugins: {
            'console-notifier/gemini': {
                logs: [
                    'first-log',
                    {text: 'second-log'}, // revealed variant of the previous example
                    {on: 'success', text: 'third-log'}, // show log only if tests passed
                    {on: 'fail', text: 'fourth-log'}, // show log only if tests failed
                    {text: 'fifth-log', color: 'bold.red'} // show colored log; feature uses methods from module `chalk`
                ]
            }
        }
    }
};

hermione

Add the plugin to your configuration file:

module.exports = {
    plugins: {
        'console-notifier/hermione': {
            logs: [
                'first-log',
                {text: 'second-log'},
                {on: 'success', text: 'third-log'},
                {on: 'fail', text: 'fourth-log'},
                {text: 'fifth-log', color: 'bold.red'}
            ]
        }
    }
};

Dependents (0)

Package Sidebar

Install

npm i console-notifier

Weekly Downloads

2

Version

1.0.0

License

MIT

Last publish

Collaborators

  • egavr