mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
47aa17274a
PR-URL: https://github.com/nodejs/node/pull/25616 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Gus Caplan <me@gus.host>
14 lines
314 B
JavaScript
14 lines
314 B
JavaScript
'use strict';
|
|
|
|
// Flags: --expose-internals
|
|
|
|
require('../common');
|
|
const { WPTRunner } = require('../common/wpt');
|
|
|
|
const runner = new WPTRunner('html/webappapis/microtask-queuing');
|
|
|
|
// Copy global descriptors from the global object
|
|
runner.copyGlobalsFromObject(global, ['queueMicrotask']);
|
|
|
|
runner.runJsTests();
|