Skip to main content
Module

std/testing/bdd.ts>describe

Deno standard library
Go to Latest
interface describe
import { type describe } from "https://deno.land/std@0.167.0/testing/bdd.ts";

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 describe
import { describe } from "https://deno.land/std@0.167.0/testing/bdd.ts";

Registers a test suite.