-
-
Notifications
You must be signed in to change notification settings - Fork 33.5k
Closed
Labels
test_runnerIssues and PRs related to the test runner subsystem.Issues and PRs related to the test runner subsystem.
Description
Version
v20.12.1
Platform
Microsoft Windows NT 10.0.26040.0 x64
Subsystem
No response
What steps will reproduce the bug?
import { lcov } from 'node:test/reporters'
const reporter = lcov()
How often does it reproduce? Is there a required condition?
Always
What is the expected behavior? Why is that the expected behavior?
lcov
is a function which creates a new reporter, like all other exports in node:test/reporters
(spec
, dot
, junit
and tap
)
What do you see instead?
lcov
is an instance of LcovReporter
class.
I think it's a typo at
Lines 49 to 57 in 3f5ff8d
lcov: { | |
__proto__: null, | |
configurable: true, | |
enumerable: true, | |
get() { | |
lcov ??= require('internal/test_runner/reporter/lcov'); | |
return ReflectConstruct(lcov, arguments); | |
}, | |
}, |
It should be defined as value
, same as spec
:
Lines 31 to 39 in 3f5ff8d
spec: { | |
__proto__: null, | |
configurable: true, | |
enumerable: true, | |
value: function value() { | |
spec ??= require('internal/test_runner/reporter/spec'); | |
return ReflectConstruct(spec, arguments); | |
}, | |
}, |
Additional information
No response
Metadata
Metadata
Assignees
Labels
test_runnerIssues and PRs related to the test runner subsystem.Issues and PRs related to the test runner subsystem.