Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/hex/src/lib/stdx/testing.ts>bdd.it

An ecosystem delivering practices, philosophy and portability. Powered By Deno and JavaScript.
Latest
interface bdd.it
import { type bdd } from "https://deno.land/x/hex@0.6.5/src/lib/stdx/testing.ts";
const { it } = bdd;

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 bdd.it
import { bdd } from "https://deno.land/x/hex@0.6.5/src/lib/stdx/testing.ts";
const { it } = bdd;

Registers an individual test case.