Skip to main content
Module

std/testing/mock.ts>returnsNext

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

Creates a function that returns the iterable values. Any iterable values that are errors will be thrown.

Type Parameters

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

Parameters

values: Iterable<Return | Error>

Returns

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