Skip to main content
Module

x/clippy/deps.ts>assertAlmostEquals

cross-platform Deno module for writing and reading clipboard.
Go to Latest
function assertAlmostEquals
import { assertAlmostEquals } from "https://deno.land/x/clippy@v0.2.1/deps.ts";

Make an assertion that actual and expected are almost equal numbers through a given tolerance. It can be used to take into account IEEE-754 double-precision floating-point representation limitations. If the values are not almost equal then throw.

Examples

Example 1

import { assertAlmostEquals, assertThrows } from "https://deno.land/std@0.221.0/testing/asserts.ts";

assertAlmostEquals(0.1, 0.2);

// Using a custom tolerance value
assertAlmostEquals(0.1 + 0.2, 0.3, 1e-16);
assertThrows(() => assertAlmostEquals(0.1 + 0.2, 0.3, 1e-17));

Parameters

actual: number
expected: number
optional
tolerance = [UNSUPPORTED]
optional
msg: string