Skip to main content
dot - node__test--reporters.d.ts - Node documentation
function dot

Usage in Deno

```typescript import { dot } from "node:node__test--reporters.d.ts"; ```
dot(source: TestEventGenerator): AsyncGenerator<
"\n"
| "."
| "X"
, void>
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>