
Security News
Static vs. Runtime Reachability: Insights from Latio’s On the Record Podcast
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
chai-gulp-helpers
Advanced tools
A simple test helper to verify that your stream returns the expected files.
This is a chai plugin for testing gulp plugins.
You can install chai-gulp-helpers via npm:
$ npm install --save-dev chai-gulp-helpers
Enable the plugin:
var chai = require("chai");
var chaiGulpHelpers = require("chai-gulp-helpers");
chai.use(chaiGulpHelpers);
This gives you two kinds of syntax:
// Verify that two arrays of Vinyl files are equal (have the same files with same content):
expect(fileList1).to.be.sameFilesAs(fileList2);
// Verify that two streams return the equal list of Vinyl files (returns a promise)
expect(stream1).to.produce.sameFilesAs(stream2);
describe("my gulp plugin", function () {
it("should do something", function () {
var expected = gulp.src("./expected/**/*"", { base: "./expected/" });
var actual = gulp.src("./fixtures/**/*", { base: "./fixtures/" })
.pipe(myGulpPlugin());
return expect(actual).to.produce.sameFilesAs(actual);
});
});
This test will pass if the files in fixtures
folder processed by your plugin match those in the expected
folder.
FAQs
A simple test helper to verify that your stream returns the expected files.
The npm package chai-gulp-helpers receives a total of 2 weekly downloads. As such, chai-gulp-helpers popularity was classified as not popular.
We found that chai-gulp-helpers 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.
Security News
The Latio podcast explores how static and runtime reachability help teams prioritize exploitable vulnerabilities and streamline AppSec workflows.
Security News
The latest Opengrep releases add Apex scanning, precision rule tuning, and performance gains for open source static code analysis.
Security News
npm now supports Trusted Publishing with OIDC, enabling secure package publishing directly from CI/CD workflows without relying on long-lived tokens.