1.0.5 • Published 6 years ago

@sealsystems/test-config-jest v1.0.5

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

@sealsystems/test-config-mocha

Test configuration for Jest at SEAL Systems

Installation

npm install --save-dev @sealsystems/test-config-jest

Quick start

Jest is installed as a dependency of @sealsystems/test-config-mocha. So you can call jest from the root directory of your project:

$(npm bin)/jest

The package also provides some CLI executables:

  • test-run runs Jest

  • test-coverage collects coverage data

  • test-coverage-check collects coverage data and fails if threshold (80% for all criteria) has not been reached

  • test-report collect coverage data and opens the generated HTML page

To use these executables, add some scripts to your package.json:

...
"scripts": {
  "test": "test-run",
  "test:coverage": "test-coverage",
  "test:coverage:check": "test-coverage-check",
  "test:report": "test-report"
}
...

And call them via npm run:

npm run test
npm run test:coverage
npm run test:coverage:check
npm run test:report
1.0.5

6 years ago

1.0.4

6 years ago

1.0.3

6 years ago

1.0.2

6 years ago

1.0.1

6 years ago