mirror of
https://github.com/zebrajr/node.git
synced 2026-01-15 12:15:26 +00:00
PR-URL: https://github.com/nodejs/node/pull/46498 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Richard Lau <rlau@redhat.com>
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
'use strict';
|
|
require('../common');
|
|
const { WPTRunner } = require('../common/wpt');
|
|
const runner = new WPTRunner('encoding');
|
|
|
|
runner.setInitScript(`
|
|
const { MessageChannel } = require('worker_threads');
|
|
global.MessageChannel = MessageChannel;
|
|
`);
|
|
|
|
runner.runJsTests();
|