import { type describe } from "https://deno.land/std@0.209.0/testing/bdd.ts";
Registers a test suite.
Call Signatures
<T>(...args: DescribeArgs<T>): TestSuite<T>
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.
skip<T>(...args: ItArgs<T>): void
Registers a test suite with ignore set to true. Alias of .ignore()
.
import { describe } from "https://deno.land/std@0.209.0/testing/bdd.ts";