![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
chai-stats-jamestalmage
Advanced tools
Statistical and additional numerical assertions for the Chai Assertion Library.
Statistical and additional numerical assertions for the Chai Assertion Library.
Chai spies are available on npm.
$ npm install chai-stats
Include chai-stats.js
after including chai.js
.
<script src="chai-stats.js"></script>
If you are using chai-stats
in the browser, there is nothing you need to do. It will detect chai
in the global
namespace and automagically get used.
If you are using node, here is a useful bit.
var chai = require('chai')
, chaiStats = require('chai-stats');
chai.use(chaiStats);
var should = chai.should()
, expect = chai.expect;
The same as NumPy's assert_almost_equal
, for scalars.
Assert near equality: abs(expected-actual) < 0.5 * 10**(-decimal)
expect(3.1415).to.almost.equal(3.14159, 3);
assert.almostEqual(3.1416, 3.14159, 3, 'these numbers are almost equal');
The same as NumPy's assert_almost_equal
, for objects whose leaves are all numbers.
Assert near equality: abs(expected-actual) < 0.5 * 10**(-decimal)
for every leaf.
expect({ pi: 3.1416 }).to.almost.eql({ pi: 3.14159 }, 3);
assert.deepAlmostEqual({ pi: 3.1416 }, { pi: 3.14159 }, 3);
Modifies the assertion subject with the sum of an array of number so it can be compared using chai's core assertions.
expect([ 1, 2, 3 ]).to.have.sum.equal(6);
expect([ 1, 2, 3 ]).to.have.sum.above(5);
expect([ 1, 2, 3 ]).to.have.sum.below(7);
Modifies the assertion subject with the mean of an array of number so it can be compared using chai's core assertions.
expect([ 1, 2, 3 ]).to.have.mean.equal(2);
expect([ 1, 2, 3 ]).to.have.mean.above(1.5);
expect([ 1, 2, 3 ]).to.have.mean.below(2.5);
Modifies the assertion subject with the standard deviations of an array of number so it can be compared using chai's core assertions.
expect([ 1, 2, 3, 4 ]).to.have.deviation.almost.equal(1.290, 2);
Tests are written using mocha in the BDD interface.
Node tests can be executed using make test
. Browser tests can be seen by opening test/browser/index.html
.
repo age : 3 months ago
commits : 21
active : 5 days
files : 14
authors :
17 Jake Luer 81.0%
4 josher19 19.0%
(The MIT License)
Copyright (c) 2012 Jake Luer jake@alogicalparadox.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE
FAQs
Statistical and additional numerical assertions for the Chai Assertion Library.
The npm package chai-stats-jamestalmage receives a total of 0 weekly downloads. As such, chai-stats-jamestalmage popularity was classified as not popular.
We found that chai-stats-jamestalmage 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.