interface RunEndInfo

Final run info; the counts themselves live on config.state.results.counter.

const info: RunEndInfo = { durationMs: 1240 };
info.durationMs; // what the summary prints as "(1240ms)"

Properties

durationMs: number

Wall-clock duration of the run in milliseconds.

Usage

import { type RunEndInfo } from "lib/reporters/types.ts";