Icard/angular-clarity-master(work.../node_modules/jasmine-spec-reporter/examples/node
realSnehal 400e0876de frontend 2024-07-16 20:25:36 +05:30
..
spec frontend 2024-07-16 20:25:36 +05:30
README.md frontend 2024-07-16 20:25:36 +05:30
package.json frontend 2024-07-16 20:25:36 +05:30

README.md

Use jasmine-spec-reporter with Node

The jasmine-spec-reporter can be used to enhance your jasmine node tests execution report.

Configuration

Create a spec/helpers/reporter.js file with the following content:

const SpecReporter = require('jasmine-spec-reporter').SpecReporter;

jasmine.getEnv().clearReporters();               // remove default reporter logs
jasmine.getEnv().addReporter(new SpecReporter({  // add jasmine-spec-reporter
  spec: {
    displayPending: true
  }
}));

Then run your tests!

Example

This directory is setup as a working example, so you can inspect the package.json, the spec directory, and you can see it all work by issuing the following commands:

npm install
npm test