Menu
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

ParameterTypeDescription
expectednumberThe value to compare against

Returns

TypeDescription
voidNo 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.5.0/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);
}