Skip to main content
Module

std/testing/mock.ts>assertSpyCall

Deno standard library
Go to Latest
function assertSpyCall
import { assertSpyCall } from "https://deno.land/std@0.136.0/testing/mock.ts";

Asserts that a spy is called as expected.

Type Parameters

Self
Args extends unknown[]
Return

Parameters

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