Skip to main content
Module

x/written/test_deps.ts>describe

A set of utilities for manipulating text, with a focus on providing typographic tools rather than pure string manipulation.
Latest
interface describe
import { type describe } from "https://deno.land/x/written@v0.2.2/test_deps.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.

function describe
import { describe } from "https://deno.land/x/written@v0.2.2/test_deps.ts";

Registers a test suite.

Parameters

...args: DescribeArgs<T>

Returns

TestSuite<T>