mirror of
https://github.com/nodejs/node.git
synced 2025-05-15 14:41:29 +00:00

PR-URL: https://github.com/nodejs/node/pull/23423 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Myles Borins <myles.borins@gmail.com>
30 lines
1.2 KiB
JavaScript
30 lines
1.2 KiB
JavaScript
// Copyright 2018 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
const {session, contextGroup, Protocol} =
|
|
InspectorTest.start('Test for console.timeLog');
|
|
|
|
(async function test() {
|
|
Protocol.Runtime.enable();
|
|
utils.setCurrentTimeMSForTest(0.0);
|
|
await Protocol.Runtime.evaluate({expression: `console.time('42')`});
|
|
utils.setCurrentTimeMSForTest(1.0);
|
|
Protocol.Runtime.evaluate({expression: `console.timeLog('42', 'a')`});
|
|
logArgs(await Protocol.Runtime.onceConsoleAPICalled());
|
|
utils.setCurrentTimeMSForTest(2.0);
|
|
Protocol.Runtime.evaluate({expression: `console.timeLog('42', 'a', 'b')`});
|
|
logArgs(await Protocol.Runtime.onceConsoleAPICalled());
|
|
utils.setCurrentTimeMSForTest(3.0);
|
|
Protocol.Runtime.evaluate({expression: `console.timeEnd('42')`});
|
|
logArgs(await Protocol.Runtime.onceConsoleAPICalled());
|
|
utils.setCurrentTimeMSForTest(4.0);
|
|
Protocol.Runtime.evaluate({expression: `console.timeLog('42', 'text')`});
|
|
logArgs(await Protocol.Runtime.onceConsoleAPICalled());
|
|
InspectorTest.completeTest();
|
|
})()
|
|
|
|
function logArgs(message) {
|
|
InspectorTest.logMessage(message.params.args);
|
|
}
|