Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@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
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.