forked from LeenkxTeam/Kmake
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();
|