Skip to content

dannysilence/mocha-json-reporter

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

78 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published