We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 572a70f commit 74ee8d3Copy full SHA for 74ee8d3
test/wpt/status/html/webappapis/microtask-queuing.json
@@ -0,0 +1,8 @@
1
+{
2
+ "queue-microtask-exceptions.any.js": {
3
+ "fail": "Node.js does not have a global addEventListener function"
4
+ },
5
+ "queue-microtask.window.js": {
6
+ "fail": "MutationObserver is not implemented"
7
+ }
8
+}
test/wpt/test-microtask-queuing.js
@@ -0,0 +1,13 @@
+'use strict';
+
+// Flags: --expose-internals
+require('../common');
+const { WPTRunner } = require('../common/wpt');
+const runner = new WPTRunner('html/webappapis/microtask-queuing');
9
10
+// Copy global descriptors from the global object
11
+runner.copyGlobalsFromObject(global, ['queueMicrotask']);
12
13
+runner.runJsTests();
0 commit comments