
Research
Malicious npm Packages Impersonate Flashbots SDKs, Targeting Ethereum Wallet Credentials
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
gulp-jest-cli
Advanced tools
$ npm install gulp-jest-cli jest-cli --save-dev
$ yarn add gulp-jest-cli jest-cli --dev
import plugin from 'gulp-jest-cli';
gulp.task('jest', () => gulp
/*
* Jest's `rootDir` will be set to the directory specified in `gulp.src`
* unless a `rootDir` is explicitly configured via configuration options
*/
.src('src')
.pipe(plugin({
config: {
/* Configuration options */
{
coverageReporters: [
'text',
'text-summary',
'json',
'lcov',
],
collectCoverageFrom: [
'**/*.js',
'!**/*test*',
]
}
},
/* CLI options*/
coverage: true,
onlyChanged: true,
}))
);
Jest docs for configuration options can be found here.
import plugin from 'gulp-jest-cli';
gulp.task('jest', () => gulp
.src('src')
.pipe(plugin({
config: '.jestrc',
/* CLI options */
coverage: true,
onlyChanged: true,
}))
);
import plugin from 'gulp-jest-cli';
gulp.task('jest', () => gulp
.src('src')
.pipe(plugin({
/* Jest will fallback to package.json for configuration when `config` is omitted */
/* CLI options */
coverage: true,
onlyChanged: true,
}))
);
Feel free to reach out to me on Twitter @jmurzy.
Contributions are very welcome: bug fixes, features, documentation, tests. Just make sure the CI is 👌.
#### License All pull requests that get merged will be made available under [the MIT license](https://github.com/jmurzy/gulp-jest-cli/blob/master/LICENSE.md), as the rest of the repository.FAQs
Gulp plugin for Jest
The npm package gulp-jest-cli receives a total of 53 weekly downloads. As such, gulp-jest-cli popularity was classified as not popular.
We found that gulp-jest-cli demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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.
Research
Four npm packages disguised as cryptographic tools steal developer credentials and send them to attacker-controlled Telegram infrastructure.
Security News
Ruby maintainers from Bundler and rbenv teams are building rv to bring Python uv's speed and unified tooling approach to Ruby development.
Security News
Following last week’s supply chain attack, Nx published findings on the GitHub Actions exploit and moved npm publishing to Trusted Publishers.