Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/lib/stdx/testing.ts>mock.SpyCall

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
interface mock.SpyCall
import { type mock } from "https://deno.land/x/hex@0.6.5/src/lib/stdx/testing.ts";
const { SpyCall } = mock;

Call information recorded by a spy.

Type Parameters

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

Properties

args: Args

Arguments passed to a function when called.

optional
returned: Return

The value that was returned by a function.

optional
error: Error

The error value that was thrown by a function.

optional
self: Self

The instance that a method was called on.