Functions

f
displayFinalResult(
unnamed 0: Counter,
timeTaken: number,
output?: Console
): void

Prints the TAP plan line and test-run summary (total, pass, skip, fail, duration).

f
displayTestResult(
testNumber: number,
details: TestDetails,
failures?: FailureInfo[],
output?: Console
): void

Formats and prints a single QUnit testEnd event as a TAP ok/not ok line with an optional YAML failure block. A pure formatter: testNumber is the TAP sequence number (the caller owns counting) and failures are pre-resolved by failedAssertions.

f
dumpYaml(unnamed 0: { name: string; actual: unknown; expected: unknown; message: string | null; stack: string | null; source: string | null; at: string | null; }): string

Serializes the fixed TAP assertion object to a YAML string. Uses a template literal (no Object.entries overhead) for the known top-level keys.