npm.io
3.3.0 • Published 1 year ago

@bluecateng/jest-helpers

Licence
ISC
Version
3.3.0
Deps
0
Size
7 kB
Vulns
0
Weekly
0
Stars
4

@bluecateng/jest-helpers GitHub license npm version

Helper scripts for Jest.

Installation

npm i -D @bluecateng/jest-helpers

Usage

In package.json add:

{
	"jest": {
		"moduleNameMapper": {
			"^react$": "@bluecateng/jest-helpers/mock-react",
			"^react-dom$": "@bluecateng/jest-helpers/mock-react",
			"^react/jsx-runtime$": "@bluecateng/jest-helpers/mock-react",
			"\\.(png|jpg|gif|svg)$": "@bluecateng/jest-helpers/file-mapper",
			"\\.(css|less)$": "@bluecateng/jest-helpers/style-mapper"
		},
		"setupFilesAfterEnv": ["@bluecateng/jest-helpers/setup-enzyme"],
		"testEnvironment": "node"
	}
}