Skip to main content
Module

x/collections/test_deps.ts>it

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 it
import { type it } from "https://deno.land/x/collections@0.12.0/test_deps.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.

function it
import { it } from "https://deno.land/x/collections@0.12.0/test_deps.ts";

Registers an individual test case.

Parameters

...args: ItArgs<T>