Skip to content

Commit

Permalink
test_runner: fix --require with --experimental-loader
Browse files Browse the repository at this point in the history
  • Loading branch information
MoLow committed Apr 27, 2023
1 parent 8b66dc6 commit e0a0d48
Show file tree
Hide file tree
Showing 4 changed files with 27 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/api/environment.cc
Original file line number Diff line number Diff line change
Expand Up @@ -529,6 +529,9 @@ NODE_EXTERN std::unique_ptr<InspectorParentHandle> GetInspectorParentHandle(
CHECK_NOT_NULL(env);
if (name == nullptr) name = "";
CHECK_NE(thread_id.id, static_cast<uint64_t>(-1));
if (!env->should_create_inspector()) {
return nullptr;
}
#if HAVE_INSPECTOR
return std::make_unique<InspectorParentHandleImpl>(
env->inspector_agent()->GetParentHandle(thread_id.id, url, name));
Expand Down
Empty file.
7 changes: 7 additions & 0 deletions test/fixtures/test-runner/esm/loader.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
export function resolve(specifier, context, next) {
return next(specifier);
}

export function load(href, context, next) {
return next(href);
}
17 changes: 17 additions & 0 deletions test/parallel/test-runner-cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -185,3 +185,20 @@ const testFixtures = fixtures.path('test-runner');
assert.match(stdout, /# tests 1/);
assert.match(stdout, /# pass 1/);
}

{
// Use test with --loader and --require.
// This case is common since vscode uses --require to load the debugger.
const args = ['--no-warnings',
'--loader', join(testFixtures, 'esm', 'loader.mjs'),
'--test', join(testFixtures, 'index.test.js')];
const child = spawnSync(process.execPath, args, {
env: { NODE_OPTIONS: `--require="${join(testFixtures, 'esm', 'bootloader.js')}"` }
});

assert.strictEqual(child.stderr.toString(), '');
assert.strictEqual(child.status, 0);
assert.strictEqual(child.signal, null);
const stdout = child.stdout.toString();
assert.match(stdout, /ok 1 - this should pass/);
}

0 comments on commit e0a0d48

Please sign in to comment.