mirror of
https://github.com/nodejs/node.git
synced 2024-11-21 10:59:27 +00:00
68e83901f3
PR-URL: https://github.com/nodejs/node/pull/46912 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
'use strict';
|
|
|
|
const { WPTRunner } = require('../common/wpt');
|
|
|
|
const runner = new WPTRunner('streams');
|
|
|
|
// Set a script that will be executed in the worker before running the tests.
|
|
runner.pretendGlobalThisAs('Window');
|
|
|
|
runner.runJsTests();
|