Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
chai-roughly-v2
Advanced tools
deep equals assertions with tolerance for chai (with fixed dependency on deep-eql)
deep equals assertions with tolerance for chai.
This is a forked version from Turbo87/chai-roughly, which have been updated to use the latest version of chaijs/deep-eql, rather than using a modified forked version.
npm install --save-dev chai-roughly-v2
After importing chai
add the following code to use chai-roughly-v2
assertions:
const chai = require('chai');
chai.use(require('chai-roughly-v2'));
Now you can use the expect(...).to.roughly.deep.equal(...)
chain for deep
equals assertions with tolerance for numbers. The default tolerance is 1e-6
and can be overwritten by using e.g.
expect(...).to.roughly(0.001).deep.equal(...)
.
it('works', function () {
expect({value: 42}).to.roughly.deep.equal({value: 41.9999999});
});
chai-roughly is licensed under the MIT License.
FAQs
deep equals assertions with tolerance for chai (with fixed dependency on deep-eql)
The npm package chai-roughly-v2 receives a total of 26 weekly downloads. As such, chai-roughly-v2 popularity was classified as not popular.
We found that chai-roughly-v2 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
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.