summaryrefslogtreecommitdiff
path: root/deps/v8/test/inspector/runtime/console-log-doesnt-run-microtasks.js
diff options
context:
space:
mode:
Diffstat (limited to 'deps/v8/test/inspector/runtime/console-log-doesnt-run-microtasks.js')
-rw-r--r--deps/v8/test/inspector/runtime/console-log-doesnt-run-microtasks.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/deps/v8/test/inspector/runtime/console-log-doesnt-run-microtasks.js b/deps/v8/test/inspector/runtime/console-log-doesnt-run-microtasks.js
new file mode 100644
index 0000000000..b7a87391e0
--- /dev/null
+++ b/deps/v8/test/inspector/runtime/console-log-doesnt-run-microtasks.js
@@ -0,0 +1,26 @@
+// Copyright 2016 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.
+
+print("Check that console.log doesn't run microtasks.");
+
+InspectorTest.addScript(
+`
+function testFunction()
+{
+ Promise.resolve().then(function(){ console.log(239); });
+ console.log(42);
+ console.log(43);
+}`);
+
+Protocol.Runtime.enable();
+Protocol.Runtime.onConsoleAPICalled(messageAdded);
+Protocol.Runtime.evaluate({ "expression": "testFunction()" });
+Protocol.Runtime.evaluate({ "expression": "setTimeout(() => console.log(\"finished\"), 0)" });
+
+function messageAdded(result)
+{
+ InspectorTest.logObject(result.params.args[0]);
+ if (result.params.args[0].value === "finished")
+ InspectorTest.completeTest();
+}