Skip to main content
Go to Latest
function assertSpyCallAsync
import { assertSpyCallAsync } from "https://deno.land/std@0.145.0/testing/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>