Skip to main content
Module

x/http_utils/dev_deps.ts>DescribeArgs

HTTP implementation utility collection
Go to Latest
type alias DescribeArgs
import { type DescribeArgs } from "https://deno.land/x/http_utils@1.0.0-beta.4/dev_deps.ts";

The arguments for a DescribeFunction.

definition:
| [string]
| [string, Omit<DescribeDefinition<T>, "name">]
| [string, () => void]
| [() => void]
| [string, Omit<DescribeDefinition<T>, "fn" | "name">, () => void]
| [Omit<DescribeDefinition<T>, "fn">, () => void]
| [Omit<DescribeDefinition<T>, "fn" | "name">, () => void]
| [TestSuite<T>, string]
| [TestSuite<T>, string, Omit<DescribeDefinition<T>, "name" | "suite">]
| [TestSuite<T>, string, () => void]
| [TestSuite<T>, () => void]
|
[
string,
Omit<DescribeDefinition<T>, "fn" | "name" | "suite">,
() => void,
]
| [TestSuite<T>, Omit<DescribeDefinition<T>, "fn" | "suite">, () => void]
| [TestSuite<T>, Omit<DescribeDefinition<T>, "fn" | "name" | "suite">, () => void]