Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/lophus/lib/std/testing.ts>it

Fully-modular TypeScript implementation of the Nostr protocol, oriented to web standards and edge environments
Latest
interface it
import { type it } from "https://deno.land/x/lophus@0.0.13/lib/std/testing.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/lophus@0.0.13/lib/std/testing.ts";

Registers an individual test case.

Parameters

...args: ItArgs<T>