-
-
Notifications
You must be signed in to change notification settings - Fork 31.7k
test_runner: allow requiring reporter from node_modules #45916
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -100,10 +100,21 @@ const kBuiltinReporters = new SafeMap([ | |||||
const kDefaultReporter = 'tap'; | ||||||
const kDefaultDestination = 'stdout'; | ||||||
|
||||||
let paerentModule = null; | ||||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||
function getParentModule() { | ||||||
if (paerentModule) { | ||||||
return paerentModule; | ||||||
} | ||||||
const { Module } = require('internal/modules/cjs/loader'); | ||||||
paerentModule = new Module('internal/node:test', null); | ||||||
paerentModule.paths = Module._nodeModulePaths(process.cwd()); | ||||||
return paerentModule; | ||||||
} | ||||||
|
||||||
async function getReportersMap(reporters, destinations) { | ||||||
return SafePromiseAllReturnArrayLike(reporters, async (name, i) => { | ||||||
const destination = kBuiltinDestinations.get(destinations[i]) ?? createWriteStream(destinations[i]); | ||||||
let reporter = await requireOrImport(kBuiltinReporters.get(name) ?? name); | ||||||
let reporter = await requireOrImport(kBuiltinReporters.get(name) ?? name, getParentModule()); | ||||||
|
||||||
if (reporter?.default) { | ||||||
reporter = reporter.default; | ||||||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -92,4 +92,13 @@ describe('node:test reporters', { concurrency: true }, () => { | |
assert.strictEqual(child.stdout.toString(), `${filename} {"test:start":5,"test:pass":2,"test:fail":3,"test:plan":3,"test:diagnostic":7}`); | ||
}); | ||
}); | ||
|
||
it('should support a custom reporter from node_modules', async () => { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please add a test for a similar reporter that’s written in ESM. |
||
const child = spawnSync(process.execPath, | ||
['--test', '--test-reporter', 'r', 'reporters.js'], | ||
{ cwd: fixtures.path('test-runner') }); | ||
assert.strictEqual(child.stderr.toString(), ''); | ||
assert.strictEqual(child.stdout.toString(), | ||
'package: r{"test:start":5,"test:pass":2,"test:fail":3,"test:plan":3,"test:diagnostic":7}'); | ||
}); | ||
}); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
esmLoader.import
‘s second parameter isparentURL
, but you haven’t updated that call (on line 45 here) like you have forModule._load
. If there were a test where the reporter were ESM (rather than the single new test in this PR, with reporterr
as CommonJS) this would have been caught.Why do we need this utility? Node.js has
--import
, which accepts either CommonJS or ESM. Can’t--test-reporter
be an alias for that, or map to it?