Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
function assertSpyCallAsync
import { assertSpyCallAsync } from "https://deno.land/x/frugal@0.3.0/dep/std/mock.ts";

Asserts that an async spy is called as expected.

Type Parameters

Self
Args extends unknown[]
Return

Parameters

spy: Spy<Self, Args, Promise<Return>>
callIndex: number
optional
expected: ExpectedSpyCall<Self, Args, Promise<Return> | Return>