Skip to main content
Module

std/testing/mock.ts>assertSpyCallAsync

The Deno Standard Library
Latest
function assertSpyCallAsync
import { assertSpyCallAsync } from "https://deno.land/std@0.223.0/testing/mock.ts";

Asserts that an async spy is called as expected.

Type Parameters

Self
Args extends unknown[]
Return

Parameters

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