mirror of
https://github.com/nodejs/node.git
synced 2025-08-15 13:48:44 +02:00

PR-URL: https://github.com/nodejs/node/pull/46912 Reviewed-By: Yagiz Nizipli <yagiz@nizipli.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de>
10 lines
244 B
JavaScript
10 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();
|