cypress-log

1.0.3 • Public • Published

cypress-log

Intelligible package that overrides the default behavior of the cy.log() method by giving the ability to print whatever you want not only in Cypress Runner UI but in the terminal as well. This is super useful when you don't want to handle what to invoke a built-in command or a task, but you still want to use one command for logging everything everywhere.

Install

npm install -D cypress-log

Usage

In your cypress/support/e2e.js file, add the following:

import 'cypress-log';

Also, you need to add the following to your cypress.config.js file:

// import the log function
const { log } = require('cypress-log/log.task');

module.exports = {
  // ...
  e2e: {
    setupNodeEvents(on, config) {
      // add the function to the task
      on('task', { log });
    },
  },
  // ...
};

Then, you can use the cy.log command in your tests as you've used to do it before. The only difference is that you can any data type as an argument. For example:

cy.log('Hello, World!');
cy.log({ foo: 'bar', baz: { nested: 'prop' } });
cy.log(['foo', 'bar']);
cy.log('another message', ['one', 'two', 'three'], { foo: 'foo' });

So, if you run your tests in the Cypress Runner UI, you will see the following:

ui

and if you run your tests in non-interactive mode, you will see the following in the terminal:

terminal

Author

Yevhen Laichenkov elaichenkov@gmail.com

License

MIT

Package Sidebar

Install

npm i cypress-log

Weekly Downloads

93

Version

1.0.3

License

MIT

Unpacked Size

17.6 kB

Total Files

7

Last publish

Collaborators

  • elaichenkov