Menu
Scroll for more
This is documentation for the next version of Grafana k6 documentation. For the latest stable release, go to the latest version.
Open source
toBeLessThan()
The toBeLessThan() method asserts that a numeric value is less than another value.
Syntax
JavaScript
expect(actual).toBeLessThan(expected);
expect(actual).not.toBeLessThan(expected);Parameters
| Parameter | Type | Description |
|---|---|---|
| expected | number | The value to compare against |
Returns
| Type | Description |
|---|---|
| void | No return value |
Description
The toBeLessThan() method performs a numeric comparison using the < operator. Both values must be numbers, or the assertion will fail.
Usage
JavaScript
import { expect } from 'https://jslib.k6.io/k6-testing/0.6.1/index.js';
export default function () {
expect(3).toBeLessThan(5);
expect(10).toBeLessThan(10.5);
expect(-5).toBeLessThan(-1);
expect(-1).toBeLessThan(0);
expect(0).toBeLessThan(1);
}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.