Skip to content
This repository was archived by the owner on Jul 28, 2021. It is now read-only.

Commit e16f846

Browse files
Remove obsolete --experimental-worker flag for test runner
1 parent 53c4b7e commit e16f846

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"description": "WIP support for WHATWG Stream in Node",
55
"main": "index.js",
66
"scripts": {
7-
"test": "node --expose-internals --experimental-worker --expose_gc test/wpt/test.js"
7+
"test": "node --expose-internals --expose_gc test/wpt/test.js"
88
},
99
"repository": {
1010
"type": "git",

test/wpt/test.js

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,9 @@
11
'use strict';
22

3-
// Flags: --expose-internals --experimental-worker --expose_gc
3+
// Flags: --expose-internals --expose_gc
44
// Note:
55
// - The --expose-internals flag is specific to Node.js core's
66
// internal error system and is unnecessary for external users.
7-
// - The --experimental-worker flag is used to inform the
8-
// WPT harness that we are running tests in the Worker scope
9-
// so it doesn't use document.methods().
107
// - The --expose_gc flag is specific to the WPT stream tests
118

129
const { WPTRunner } = require('../common/wpt');

0 commit comments

Comments
 (0)