You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

jest-xunit

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

jest-xunit

jest-xunit is a reporter for Jest that produces an XML in xunit format.

1.0.11
latest
Source
npmnpm
Version published
Weekly downloads
3.9K
-14.53%
Maintainers
1
Weekly downloads
 
Created
Source

Jest XUnit

jest-xunit is a reporter for Jest that produces an XML in xunit format.

Installation

npm i -D jest-xunit

Then in your jest config specify jest-xunit as a reporter:

{
  ...
  reporters: [
		'default', // keep the default reporter
		[
			'jest-xunit',
			{
				traitsRegex: [
					{ regex: /\(Test Type:([^,)]+)(,|\)).*/g, name: 'Category' },
					{ regex: /.*Test Traits: ([^)]+)\).*/g, name: 'Type' }
				]
			}
		]
	]
  ...
}

Config

configKeyDescriptionDefault
filenameThe filename of the results. The reporter outputs xml formattest-results.xml
outputPathThe path where the test results should be generated.process.cwd()
traitsRegexAn array of objects with the following keys: _ regex - A regex to be used to extract the traits _ name - The name of the extract trait type[]

Keywords

jest

FAQs

Package last updated on 29 Nov 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts