test: fix assertion in test-console

Move the assertion after the second call to `console.time()` to
actually make sure that the time is not reset.

Refs: https://github.com/nodejs/node/pull/20442

PR-URL: https://github.com/nodejs/node/pull/20557
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
This commit is contained in:
Luigi Pinca 2018-05-06 09:15:30 +02:00 committed by Anna Henningsen
parent 37461878d0
commit 60ef7d1a8f
No known key found for this signature in database
GPG Key ID: 9C63F3A6CD2AD8F9

View File

@ -142,12 +142,12 @@ console.timeEnd(NaN);
console.time('test');
const time = console._times.get('test');
setTimeout(() => {
assert.deepStrictEqual(console._times.get('test'), time);
common.expectWarning(
'Warning',
'Label \'test\' already exists for console.time()',
common.noWarnCode);
console.time('test');
assert.deepStrictEqual(console._times.get('test'), time);
console.timeEnd('test');
}, 1);