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

Commit

Permalink
Remove obsolete --experimental-worker flag for test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
MattiasBuelens committed Mar 11, 2021
1 parent 53c4b7e commit e16f846
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -4,7 +4,7 @@
"description": "WIP support for WHATWG Stream in Node",
"main": "index.js",
"scripts": {
"test": "node --expose-internals --experimental-worker --expose_gc test/wpt/test.js"
"test": "node --expose-internals --expose_gc test/wpt/test.js"
},
"repository": {
"type": "git",
Expand Down
5 changes: 1 addition & 4 deletions test/wpt/test.js
@@ -1,12 +1,9 @@
'use strict';

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

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

0 comments on commit e16f846

Please sign in to comment.