Module

x/justaos/test.deps.ts>DescribeArgs

A command line interface for justaos
Latest
type alias DescribeArgs
import { type DescribeArgs } from "https://dotland.deno.dev/x/justaos@v0.1.3/test.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]