node/test/parallel/test-fs-timestamp-parsing-error.js
Gabriel Bota f662c9b63f
test: replace forEach with for [...] of
PR-URL: https://github.com/nodejs/node/pull/50615
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
2023-11-10 09:36:27 +00:00

30 lines
533 B
JavaScript

'use strict';
require('../common');
const assert = require('assert');
const fs = require('fs');
for (const input of [Infinity, -Infinity, NaN]) {
assert.throws(
() => {
fs._toUnixTimestamp(input);
},
{
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError'
});
}
assert.throws(
() => {
fs._toUnixTimestamp({});
},
{
code: 'ERR_INVALID_ARG_TYPE',
name: 'TypeError'
});
const okInputs = [1, -1, '1', '-1', Date.now()];
for (const input of okInputs) {
fs._toUnixTimestamp(input);
}