Skip to main content
Module

std/testing/mock.ts>spy

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

Wraps a function or instance method with a Spy.

Type Parameters

optional
Self = any
optional
Args extends unknown[] = any[]
optional
Return = undefined

Type Parameters

Self
Args extends unknown[]
Return

Parameters

func: (this: Self, ...args: Args) => Return

Type Parameters

Self
Prop extends keyof Self

Parameters

self: Self
property: Prop

Returns

Spy<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>

Type Parameters

Self
Args extends unknown[]
Return

Parameters

optional
funcOrSelf: ((this: Self, ...args: Args) => Return) | Self
optional
property: keyof Self