Security News
Opengrep Emerges as Open Source Alternative Amid Semgrep Licensing Controversy
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
@jenkins-cd/js-builder-jest
Advanced tools
Adds support for running tests with Jest via Jenkins js-builder
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 339 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.
Security News
Opengrep forks Semgrep to preserve open source SAST in response to controversial licensing changes.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.