Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

x/service/test/deps.ts>spy

Install a Deno application as a system service
Go to Latest
function spy
import { spy } from "https://deno.land/x/service@1.0.0-beta.5/test/deps.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>>