Skip to main content
Module

std/testing/mock.ts>assertSpyCall

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

Asserts that a spy is called as expected.

Type Parameters

Self
Args extends unknown[]
Return

Parameters

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