1.3.1 • Published 6 years ago

jest-nunit-reporter v1.3.1

Weekly downloads
1,081
License
MIT
Repository
github
Last release
6 years ago

Build Status npm

jest-nunit-reporter

A NUnit test reporter for Jest.

Installation

$ npm i -D jest-nunit-reporter

Usage

In your package.json file include a "jest" config section and specify the "testResultsProcessor":

{
  "jest": {
    "testResultsProcessor": "./node_modules/jest-nunit-reporter"
  }
}

For your Continuous Integration you can simply do:

jest --ci --testResultsProcessor="./node_modules/jest-nunit-reporter

The reporter will generate a test-report.xml file in the project root. If you need to specify a different location(e.g., for a CI server) then set the paths in the package.json jestNunitReporter property:

"jestNunitReporter": {
  "outputPath": "reports/",
  "outputFileName": "custom-report.xml",
}

There are other options for naming test suites:

  • testSuiteNamePrefix: Add prefix to test-suites names
  • testSuiteNameFromAncestors: Use ancestors root title (describe)

LICENSE

MIT

1.3.1

6 years ago

1.3.0

6 years ago

1.2.0

6 years ago

1.1.0

6 years ago

1.0.0

6 years ago

1.0.0-pre1

6 years ago