
Product
Rust Support Now in Beta
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
@jenkins-cd/js-builder-jest
Advanced tools
Run your tests with Jenkins JS Builder using the "Jest" test runner.
Add a gulpfile with the following line:
const jsb = require('@jenkins-cd/js-builder');
Install the @jenkins-cd/js-builder-jest
dependency.
Setup npm scripts
It is convenient to invoke js-builder-jest via npm scripts. Add the following to the "scripts" block in package.json:
"test": "gulp test",
"test:fast": "gulp test:fast",
"test:debug": "node --debug-brk ./node_modules/.bin/gulp test:debug",
The default location for tests is the test
folder. This can be overridden by calling builder.tests(<new-path>
in the gulpfile.
The file names need to match the pattern *-spec.js
or *-test.js
; the jsx
extension is also supported.
Run the tests and produces test and coverage reports.
You can limit the tests that are run via the test
parameter. This is a pattern that is passed to Jest's testPathPattern CLI parameter.
JUnit test reports are stored in target/jest-reports/
and coverage reports in target/jest-coverage/
.
Note that coverage is only measured for .js and .jsx files in the source directories (default: src
).
npm run test:fast
Runs the tests but skips generation of reports and coverage. This is good for local development.
npm run test:debug
Runs the tests in debug mode on default port 5858. Test execution will be paused until the debugger is attached and execution is resumed.
Run a single test.
npm run test -- --test test/src/js/foo/bar/foobar-spec
Runs any test with 'calculator' in the path or name.
npm run test -- --test calculator
Run any test inside of a 'math' folder.
npm run test -- --test /math/
Jest's command line runner supports custom configuration placed in a "jest" property in package.json. js-builder-jest
will automatically add these configuration options if they are defined.
Jest also supports useful CLI options. These can be used in two ways:
"test:fast": "gulp test:fast --updateSnapshot",
npm run test:fast -- --updateSnapshot
Note the double dash above.
FAQs
Adds support for running tests with Jest via Jenkins js-builder
The npm package @jenkins-cd/js-builder-jest receives a total of 0 weekly downloads. As such, @jenkins-cd/js-builder-jest popularity was classified as not popular.
We found that @jenkins-cd/js-builder-jest demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 11 open source maintainers collaborating on the project.
Did you know?
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.
Product
Socket's Rust support is moving to Beta: all users can scan Cargo projects and generate SBOMs, including Cargo.toml-only crates, with Rust-aware supply chain checks.
Product
Socket Fix 2.0 brings targeted CVE remediation, smarter upgrade planning, and broader ecosystem support to help developers get to zero alerts.
Security News
Socket CEO Feross Aboukhadijeh joins Risky Business Weekly to unpack recent npm phishing attacks, their limited impact, and the risks if attackers get smarter.