/
erioxis
/
web-nodejs
Обзор
Документация
Войти
/
erioxis
/
web-nodejs
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
Безопасность
master
backend/node_modules/fast-json-stringify/test/infinity.test.js
55 строк
1 KB
erioxis
lab11fix
15 дек 2025, 23:21
15 дек 2025, 23:21
70dc7ba
Код
Авторство
О чём код?
'use strict' const { test } = require('node:test') const build = require('..') test('Finite numbers', t => { const values = [-5, 0, -0, 1.33, 99, 100.0, Math.E, Number.EPSILON, Number.MAX_SAFE_INTEGER, Number.MAX_VALUE, Number.MIN_SAFE_INTEGER, Number.MIN_VALUE] t.plan(values.length) const schema = { type: 'number' } const stringify = build(schema) values.forEach(v => t.assert.equal(stringify(v), JSON.stringify(v))) }) test('Infinite integers', t => { const values = [Infinity, -Infinity] t.plan(values.length) const schema = { type: 'integer' } const stringify = build(schema) values.forEach(v => { try { stringify(v) } catch (err) { t.assert.equal(err.message, `The value "${v}" cannot be converted to an integer.`) } }) }) test('Infinite numbers', t => { const values = [Infinity, -Infinity] t.plan(values.length) const schema = { type: 'number' } const stringify = build(schema) values.forEach(v => t.assert.equal(stringify(v), JSON.stringify(v))) })