Skip to main content
Module

std/testing/mock.ts>stub

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

Replaces an instance method with a Stub.

Type Parameters

Self
Prop extends keyof Self

Parameters

self: Self
property: Prop

Returns

Stub<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>

Type Parameters

Self
Prop extends keyof Self

Parameters

self: Self
property: Prop
func: (this: Self, ...args: GetParametersFromProp<Self, Prop>) => GetReturnFromProp<Self, Prop>

Returns

Stub<Self, GetParametersFromProp<Self, Prop>, GetReturnFromProp<Self, Prop>>

Type Parameters

Self
Args extends unknown[]
Return

Parameters

self: Self
property: keyof Self
optional
func: (this: Self, ...args: Args) => Return