Skip to main content
Module

x/domain_functions/src/test-prelude.ts>describe

Decouple your business logic from your framework. With first-class type inference from end to end.
Go to Latest
interface describe
import { type describe } from "https://deno.land/x/domain_functions@v2.6.0/src/test-prelude.ts";

Registers a test suite.

Call Signatures

<T>(...args: DescribeArgs<T>): TestSuite<T>

Methods

only<T>(...args: DescribeArgs<T>): TestSuite<T>

Registers a test suite with only set to true.

ignore<T>(...args: DescribeArgs<T>): TestSuite<T>

Registers a test suite with ignore set to true.

skip<T>(...args: ItArgs<T>): void

Registers a test suite with ignore set to true. Alias of .ignore().

function describe
import { describe } from "https://deno.land/x/domain_functions@v2.6.0/src/test-prelude.ts";

Registers a test suite.

Parameters

...args: DescribeArgs<T>

Returns

TestSuite<T>