summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/console-time-log.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/runtime/console-time-log.js')
-rw-r--r--deps/v8/test/inspector/runtime/console-time-log.js29
1 files changed, 29 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/runtime/console-time-log.js b/deps/v8/test/inspector/runtime/console-time-log.js
new file mode 100644
index 0000000000..83683ec26a
--- /dev/null
+++ b/deps/v8/test/inspector/runtime/console-time-log.js
@@ -0,0 +1,29 @@
+// 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);
+}