
Research
Security News
Lazarus Strikes npm Again with New Wave of Malicious Packages
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
jasmine-matchers
Advanced tools
Under MIT License
This project contains a set of matchers for the jasmine test library that are very handy for more explicit test writing and especially more explicit error reportings. It contains matchers such as
Either you use in your browser jasmine test runner by adding it after the script-tag jasmine.js
:
// Since v0.2.0 you have to include every matcher on demand
<script src="jasmine-matchers/src/toBe.js"></script>
<script src="jasmine-matchers/src/toHave.js"></script>
<script src="jasmine-matchers/src/toContain.js"></script>
<script src="jasmine-matchers/src/toThrow.js"></script>
<script src="jasmine-matchers/src/toStartEndWith.js"></script>
Or when using jasmine-node you can simply install the matchers via:
npm install jasmine-matchers
And make them available in your spec-file:
require('jasmine-matchers');
describe(...);
// or via requirejs (assuming your specs are within PROJECT_ROOT/test):
require([
'../node_modules/jasmein-matchers/src/toBe.js',
'../node_modules/jasmein-matchers/src/toHave.js',
'../node_modules/jasmein-matchers/src/toContain.js',
'../node_modules/jasmein-matchers/src/toThrow.js',
'../node_modules/jasmein-matchers/src/toStartEndWith.js',
], function() {
describe(...);
});
This used to be our (uxebu's) collection of matchers that moved from project to project, got extended here and there, let's share it.
Use make build
to create one file, that lands in dist/matchers.js
that you can include, if you don't like to handle multiple files.
FAQs
Extends the matchers jasmine provides.
We found that jasmine-matchers demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
The Socket Research Team has discovered six new malicious npm packages linked to North Korea’s Lazarus Group, designed to steal credentials and deploy backdoors.
Security News
Socket CEO Feross Aboukhadijeh discusses the open web, open source security, and how Socket tackles software supply chain attacks on The Pair Program podcast.
Security News
Opengrep continues building momentum with the alpha release of its Playground tool, demonstrating the project's rapid evolution just two months after its initial launch.