
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
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(expected);
});
});
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 38 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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.