Socket
Socket
Sign inDemoInstall

chai-roughly-v2

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chai-roughly-v2

deep equals assertions with tolerance for chai (with fixed dependency on deep-eql)


Version published
Weekly downloads
62
decreased by-28.74%
Maintainers
1
Weekly downloads
 
Created
Source

chai-roughly

CI Build npm

Deep equal assertions with tolerance for chai.

Why a v2?

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.

Installation

npm install --save-dev chai-roughly-v2

Usage

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(...).

const { expect } = chai;

it('works', () => {
  const result = { value: 41.9999999 };
  expect(result).to.roughly.deep.equal({ value: 42 });
});

License

chai-roughly is licensed under the MIT License.

Keywords

FAQs

Package last updated on 21 Sep 2022

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc