Skip to content
This repository has been archived by the owner on Jun 5, 2024. It is now read-only.

A QUnit plugin for asserting that a number is approximately equal (or not) to an expected number, within a given tolerance.

Notifications You must be signed in to change notification settings

JamesMGreene/qunit-assert-close

Repository files navigation

QUnit Close assertion plugin

This plugin for QUnit adds close and notClose assertion methods to test that a number is approximately equal (or not) to an expected number, within a given tolerance.

Usage

assert.close(actual, expected, maxDifference, message);
assert.notClose(actual, expected, minDifference, message);

Where:

  • maxDifference: the maximum inclusive difference allowed (tolerance) between the actual and expected numbers
  • minDifference: the minimum exclusive difference allowed (tolerance) between the actual and expected numbers
  • actual, expected, message: The usual

Example

test('Example unit test', function(assert) {
  assert.close(3.141, Math.PI, 0.001);
  assert.notClose(3.1, Math.PI, 0.001);
}

For more examples, refer to the unit tests.

About

A QUnit plugin for asserting that a number is approximately equal (or not) to an expected number, within a given tolerance.

Resources

Stars

Watchers

Forks

Packages

No packages published