Skip to content

Commit d4f8693

Browse files
committed
fix: rename to harness.js
1 parent 2ea07e6 commit d4f8693

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

implementors/node/tests.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ assert(
1010

1111
const ROOT_PATH = path.resolve(import.meta.dirname, '..', '..');
1212
const TESTS_ROOT_PATH = path.join(ROOT_PATH, 'tests');
13-
const GLOBALS_MODULE_PATH = path.join(
13+
const HARNESS_MODULE_PATH = path.join(
1414
ROOT_PATH,
1515
'implementors',
1616
'node',
17-
'globals.js',
17+
'harness.js',
1818
);
1919

2020
export function listDirectoryEntries(dir: string) {
@@ -47,7 +47,7 @@ export function runFileInSubprocess(
4747
// Using file scheme prefix when to enable imports on Windows
4848
'--expose-gc',
4949
'--import',
50-
'file://' + GLOBALS_MODULE_PATH,
50+
'file://' + HARNESS_MODULE_PATH,
5151
filePath,
5252
],
5353
{ cwd },

0 commit comments

Comments
 (0)