Menu
Choose a product
Viewing: v1.7.x (latest)
Find another version
Scroll for more
Open source
toBeCloseTo()
The toBeCloseTo() method asserts that a number is close to another number within a specified precision. This is useful for comparing floating-point numbers where exact equality might fail due to precision issues.
Syntax
JavaScript
expect(actual).toBeCloseTo(expected);
expect(actual).toBeCloseTo(expected, precision);
expect(actual).not.toBeCloseTo(expected);
expect(actual).not.toBeCloseTo(expected, precision);Parameters
| Parameter | Type | Default | Description |
|---|---|---|---|
| expected | number | The expected number | |
| precision | number | 2 | Number of decimal digits to check |
Returns
| Type | Description |
|---|---|
| void | No return value |
Description
The toBeCloseTo() method checks if two numbers are approximately equal within a specified precision. It uses the formula Math.abs(actual - expected) < Math.pow(10, -precision) / 2 to determine if the numbers are close enough.
This is particularly useful when working with floating-point arithmetic where exact equality comparisons might fail due to precision limitations.
Usage
JavaScript
import { expect } from 'https://jslib.k6.io/k6-testing/0.6.1/index.js';
export default function () {
// Floating-point arithmetic precision issues
expect(0.1 + 0.2).toBeCloseTo(0.3);
expect(0.1 + 0.2).toBeCloseTo(0.3, 2);
// These would fail with toBe()
// expect(0.1 + 0.2).toBe(0.3); // This fails!
// More examples
expect(1.005).toBeCloseTo(1, 0);
expect(1.005).toBeCloseTo(1.01, 1);
expect(1.005).not.toBeCloseTo(1.01, 2);
}Was this page helpful?
Related resources from Grafana Labs
Additional helpful documentation, links, and articles:
Video

Performance testing and observability in Grafana Cloud
Optimize user experiences with Grafana Cloud. Learn real-time insights, performance testing with k6, and continuous validation with Synthetic Monitoring.
Events

User-centered observability: load testing, real user monitoring, and synthetics
Learn how to use load testing, synthetic monitoring, and real user monitoring (RUM) to understand end users' experience of your apps. Watch on demand.