Skip to main content
function dot
dot(source: TestEventGenerator): AsyncGenerator<
"\n"
| "."
| "X"
, void>
Deprecated

The dot reporter outputs the test results in a compact format, where each passing test is represented by a ., and each failing test is represented by a X.

Parameters

Return Type

AsyncGenerator<
"\n"
| "."
| "X"
, void>
Back to top