mirror of
https://github.com/denoland/deno.git
synced 2024-12-18 21:35:31 -05:00
fb24fd37c9
This PR enables node compat test cases found passing by using the tool added in #27122 The percentage of passing test case increases from 16.16% to 30.43% by this change.
21 lines
930 B
JavaScript
21 lines
930 B
JavaScript
// deno-fmt-ignore-file
|
|
// deno-lint-ignore-file
|
|
|
|
// Copyright Joyent and Node contributors. All rights reserved. MIT license.
|
|
// Taken from Node 20.11.1
|
|
// This file is automatically generated by `tests/node_compat/runner/setup.ts`. Do not modify this file manually.
|
|
|
|
'use strict';
|
|
// Flags: --expose-internals
|
|
require('../common');
|
|
const { formatTime } = require('internal/console/constructor');
|
|
const assert = require('assert');
|
|
|
|
assert.strictEqual(formatTime(100.0096), '100.01ms');
|
|
assert.strictEqual(formatTime(100.0115), '100.011ms');
|
|
assert.strictEqual(formatTime(1500.04), '1.500s');
|
|
assert.strictEqual(formatTime(1000.056), '1.000s');
|
|
assert.strictEqual(formatTime(60300.3), '1:00.300 (m:ss.mmm)');
|
|
assert.strictEqual(formatTime(4000457.4), '1:06:40.457 (h:mm:ss.mmm)');
|
|
assert.strictEqual(formatTime(3601310.4), '1:00:01.310 (h:mm:ss.mmm)');
|
|
assert.strictEqual(formatTime(3213601017.6), '892:40:01.018 (h:mm:ss.mmm)');
|