1.0.5 • Published 7 years ago
@sealsystems/test-config-jest v1.0.5
@sealsystems/test-config-mocha
Test configuration for Jest at SEAL Systems
Installation
npm install --save-dev @sealsystems/test-config-jestQuick 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)/jestThe package also provides some CLI executables:
test-runruns Jesttest-coveragecollects coverage datatest-coverage-checkcollects coverage data and fails if threshold (80% for all criteria) has not been reachedtest-reportcollect 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