Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
karma-chai-immutable
Advanced tools
Makes the chai-immutable adapter for Chai and Immutable available in Karma
$ npm install karma-chai-immutable --save-dev
Add chai-immutable
to the frameworks
key in your Karma configuration:
module.exports = function(config) {
'use strict';
config.set({
frameworks: ['mocha', 'chai-immutable'],
#...
});
}
Chai matchers for Immutable are available in tests:
describe('chai-immutable', function () {
it('can compare objects', function () {
var a = Immutable.Map({key: 'value'}),
b = a.merge({key: 'value'}),
c = a.merge({key: 'other value'});
a.should.equal(b);
a.should.not.equal(c);
});
it('can check if an Immutable is empty', function () {
Immutable.List().should.be.empty;
});
});
See chai-immutable for full documentation.
Cheers to chai-immutable and karma!
FAQs
Chai and Immutable for Karma
The npm package karma-chai-immutable receives a total of 208 weekly downloads. As such, karma-chai-immutable popularity was classified as not popular.
We found that karma-chai-immutable 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
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.