Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/molt/lib/std/testing.ts>ExpectedSpyCall

Update dependencies the Deno way
Latest
interface ExpectedSpyCall
import { type ExpectedSpyCall } from "https://deno.land/x/molt@0.17.2/lib/std/testing.ts";

Call information recorded by a spy.

Type Parameters

optional
Self = any
optional
Args extends unknown[] = any[]
optional
Return = any

Properties

optional
args: [...Args, ...unknown[]]

Arguments passed to a function when called.

optional
self: Self

The instance that a method was called on.

optional
returned: Return

The value that was returned by a function. If you expect a promise to reject, expect error instead.

optional
error: { Class?: new (...args: any[]) => Error; msgIncludes?: string; }