Usage in Deno
import * as mod from "node:test/reporters";
The node:test/reporters
module exposes the builtin-reporters for node:test
.
To access it:
import test from 'node:test/reporters';
This module is only available under the node:
scheme. The following will not
work:
import test from 'node:test/reporters';
c
LcovReporter
No documentation available
c
SpecReporter
No documentation available
I
ReporterConstructorWrapper
No documentation available
T
TestEvent
No documentation available
T
TestEventGenerator
No documentation available
v
lcov
The lcov
reporter outputs test coverage when used with the--experimental-test-coverage
flag.
v
spec
The spec
reporter outputs the test results in a human-readable format.