assert.CallTrackerReportInformation - Node documentation
interface assert.CallTrackerReportInformation

Usage in Deno

import type assert from "node:assert";
type { CallTrackerReportInformation } = assert;

Properties

message: string
actual: number

The actual number of times the function was called.

expected: number

The number of times the function was expected to be called.

operator: string

The name of the function that is wrapped.

stack: object

A stack trace of the function.