unmock-jest
v0.3.18
Published
Jest reporter for [Unmock](https://unmock.io).
Readme
unmock-jest
Jest reporter for Unmock.
Read full documentation at unmock.io.
Installation
npm i unmock-jest -D
// or
yarn add unmock-jest -DUsage
In your Jest configuration, add "unmock-jest/reporter" as reporter:
// jest.config.js
{
reporters: ["default", "unmock-jest/reporter"]
}Then run your tests and a report is generated.
Note that unmock must also be installed.
Configuration
You can define options in the reporter configuration:
// jest.config.js
{
reporters: [
"default",
[ "unmock-jest", { outputDirectory: "reports" } ]
]
}Following options are available:
| Reporter Config Name| Description | Default |
|--|--|--|
| outputDirectory | Directory to save the output | "__unmock__/" |
| outputFilename | File name for the output | "unmock-report.html" |
