2.0.5 • Published 2 years ago

jest-matcher-percent-error v2.0.5

Weekly downloads
2
License
MIT
Repository
github
Last release
2 years ago

jest-matcher-percent-error

npm GitHub Workflow Status

This is a simple matcher for Jest that tests whether the actual value matches the expected value, within some specified percent error.

Installation

With npm:

$ npm install --save-dev jest-matcher-percent-error

Usage

To test whether the result of foo() is within 10% of 100:

import toBeWithinPercent from "jest-matcher-percent-error";

expect.extend({ toBeWithinPercent });

test("foo works", () => {
  expect(foo()).toBeWithinPercent(100, 10);
});

License

This is free software, distributed under the MIT license.

2.0.5

2 years ago

2.0.4

2 years ago

2.0.3

3 years ago

2.0.2

3 years ago

2.0.1

4 years ago

2.0.0

4 years ago

1.1.2

5 years ago

1.1.1

5 years ago

1.1.0

5 years ago

1.0.1

7 years ago

1.0.0

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago