Documentation for automated readers
A curated documentation index is available at: https://grafana.com/llms.txt
A complete documentation index is available at: https://grafana.com/llms-full.txt
These indexes can help with page discovery before fetching individual documents.
This page is also available in Markdown, which may be easier for automated readers and AI tools to parse than HTML. The Markdown version is available at https://grafana.com/docs/k6/latest/javascript-api/jslib/testing/non-retrying-assertions/tobenan.md, or by sending Accept: text/markdown to https://grafana.com/docs/k6/latest/javascript-api/jslib/testing/non-retrying-assertions/tobenan/. For broader documentation discovery, the curated index is available at https://grafana.com/llms.txt and the complete index is available at https://grafana.com/llms-full.txt.
toBeNaN()
The toBeNaN() method asserts that a value is NaN (Not a Number).
Syntax
expect(actual).toBeNaN();
expect(actual).not.toBeNaN();Returns
| Type | Description |
|---|---|
| void | No return value |
Description
The toBeNaN() method checks if a value is exactly NaN using Number.isNaN(). It only passes for the NaN value and fails for all other values, including numbers, strings, and other falsy values.
Usage
import { expect } from 'https://jslib.k6.io/k6-testing/0.6.1/index.js';
export default function () {
const formData = {
age: '25',
invalidNumber: 'not-a-number',
};
// Validate numeric conversions
expect(Number(formData.age)).not.toBeNaN();
expect(Number(formData.invalidNumber)).toBeNaN();
// Mathematical operations that result in NaN
expect(0 / 0).toBeNaN();
expect(Math.sqrt(-1)).toBeNaN();
expect(Infinity - Infinity).toBeNaN();
// Valid numbers are not NaN
expect(123).not.toBeNaN();
expect(Infinity).not.toBeNaN();
expect(1 / 0).not.toBeNaN(); // Infinity
}Was this page helpful?
Related resources from Grafana Labs

