Closed
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
It should be defined as value
, same as spec
:
Lines 31 to 39 in 3f5ff8d
Additional information
No response