summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/console-time-repeat.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/runtime/console-time-repeat.js')
-rw-r--r--deps/v8/test/inspector/runtime/console-time-repeat.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/runtime/console-time-repeat.js b/deps/v8/test/inspector/runtime/console-time-repeat.js
new file mode 100644
index 0000000000..f9a5f6ddf8
--- /dev/null
+++ b/deps/v8/test/inspector/runtime/console-time-repeat.js
@@ -0,0 +1,20 @@
+// Copyright 2017 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.
+
+let {session, contextGroup, Protocol} = InspectorTest.start('Checks that repeated console.time do not reset');
+
+Protocol.Runtime.onConsoleAPICalled(InspectorTest.logMessage);
+Protocol.Runtime.enable();
+(async function() {
+ utils.setCurrentTimeMSForTest(0.0);
+ await Protocol.Runtime.evaluate({expression: `console.time('a')`});
+ utils.setCurrentTimeMSForTest(1.0);
+ await Protocol.Runtime.evaluate({expression: `console.time('a')`});
+ utils.setCurrentTimeMSForTest(2.0);
+ await Protocol.Runtime.evaluate({expression: `console.timeEnd('a')`});
+ utils.setCurrentTimeMSForTest(5.0);
+ await Protocol.Runtime.evaluate({expression: `console.timeEnd('a')`});
+
+ InspectorTest.completeTest();
+})();