Skip to main content
Module

x/deno_slack_sdk/dev_deps.ts>mock.spy

SDK for building Run on Slack apps using Deno
Go to Latest
function mock.spy
import { mock } from "https://deno.land/x/deno_slack_sdk@2.9.0/dev_deps.ts";
const { spy } = mock;

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>>