1.4.2 • Published 4 years ago

jest-html-teq-reporters v1.4.2

Weekly downloads
40
License
MIT
Repository
-
Last release
4 years ago

Jest reporter

Jest test results processor for generating a summary in HTML

Installation


  npm install jest-html-teq-reporters --save-dev

Usage


Configure Jest to process the test results by adding the following entry to the Jest config (jest.config.json):

"jest": {
  ...,
  "reporters": [
    "default",
    "jest-html-teq-reporters"
  ],
  ...
}

As you run Jest from within the terminal, a file called jest_html_reporters.html will be created within your root folder containing information about your tests.

Available Options

The options below are specific to the reporter.

Option NameTypeDefaultDescription
publicPathstring''specify the base path
filenamestringjest_html_reporters.htmlFilename of saved report Applies to the generated html
expandBooleanfalsespecify whether default expand all data
pageTitlestringReportspecify header and page title
worstKeystringWorstCasespecify keyword to filter Worst Case
logoImgPathstringundefinedspecify path of the image that will be displayed to the right of page title
hideIconBooleanfalsehide default icon

example add config options

...,
"reporters": [
  "default",
  ["jest-html-teq-reporters", {
    "publicPath": "./html-report",
    "filename": "report.html",
    "expand": true
  }]
]
1.4.2

4 years ago

1.4.1

4 years ago

1.4.0

4 years ago

1.3.9

4 years ago

1.3.8

4 years ago

1.3.7

4 years ago

1.3.6

4 years ago

1.3.5

4 years ago

1.3.4

4 years ago

1.3.3

4 years ago

1.3.2

4 years ago

1.3.1

4 years ago

1.3.0

4 years ago

1.2.9

4 years ago

1.2.8

4 years ago

1.2.7

4 years ago

1.2.6

4 years ago

1.2.5

4 years ago

1.2.4

4 years ago

1.2.3

4 years ago

1.2.2

4 years ago