mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
f662c9b63f
PR-URL: https://github.com/nodejs/node/pull/50615 Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Debadree Chatterjee <debadree333@gmail.com>
30 lines
533 B
JavaScript
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);
|
|
}
|