@dannysilence/mocha-json-reporter

1.0.34 • Public • Published

mocha-json-reporter

Node.js Package

Overview

Mainly same as default mocha json reporter, but also contains hashing function to randomize output file names so running multiple mocha processes sequentially won't overwrite the output.

Install via NPM

npm i @dannysilence/mocha-json-reporter

Example

There is an example of using this reporter together with cypress and cypress-multi-reporters available here.

For mocha specifically, in short, say if you have spec as follows

describe('Components class', function() {
    context(' for simple <H1> element', function() {
        it(' should be located by tag', function() {
            expect(1).to.eq(1);
        })        
    });
});

and let's say you define the following config

{
    "ReporterOptions": {
        "enabled": true,
        "output": "cypress/results/[hash].json"
    }
}

then @dannysilence/mocha-json-reporter produces the result for each spec container separately as follows:

{
  "stats": {
    "suites": 2,
    "tests": 1,
    "passes": 1,
    "pending": 0,
    "failures": 0,
    "start": "2022-07-18T05:51:24.586Z"
  },
  "tests": [
    {
      "title": " should be located by tag",
      "fullTitle": "Components class  for simple <H1> element  should be located by tag",
      "duration": 123,
      "currentRetry": 0,
      "err": {},
      "testConfig": {}
    }
  ],
  "pending": [],
  "failures": [],
  "passes": [
    {
      "title": " should be located by tag",
      "fullTitle": "Components class  for simple <H1> element  should be located by tag",
      "duration": 123,
      "currentRetry": 0,
      "err": {},
      "testConfig": {}
    }
  ]
}

Links

Readme

Keywords

Package Sidebar

Install

npm i @dannysilence/mocha-json-reporter

Weekly Downloads

361

Version

1.0.34

License

MIT

Unpacked Size

14.7 kB

Total Files

6

Last publish

Collaborators

  • dannysilence