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.describe

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

Registers a test suite.

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

Registers a test suite.