Skip to main content
Module

x/collections/test_deps.ts>describe

Collection data structures that are not standard built-in objects in JavaScript. This includes a vector (double-ended queue), binary heap (priority queue), binary search tree, and a red black tree.
Very Popular
Go to Latest
interface describe
import { type describe } from "https://deno.land/x/collections@0.12.0/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/collections@0.12.0/test_deps.ts";

Registers a test suite.

Parameters

...args: DescribeArgs<T>

Returns

TestSuite<T>