Skip to main content
Module

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

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

Registers an individual test case.

Call Signatures

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

Methods

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

Registers an individual test case with only set to true.

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

Registers an individual test case with ignore set to true.

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

Registers an individual test case with ignore set to true. Alias of .ignore().

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

Registers an individual test case.

Parameters

...args: ItArgs<T>