Module

x/justaos/test.deps.ts>ItDefinition

A command line interface for justaos
Latest
interface ItDefinition
implements Omit<Deno.TestDefinition, "fn">
import { type ItDefinition } from "https://dotland.deno.dev/x/justaos@v0.1.3/test.deps.ts";

The options for creating an individual test case with the it function.

Properties

fn: (this: T, t: Deno.TestContext) => void | Promise<void>
optional
suite: TestSuite<T>

The describe function returns a TestSuite representing the group of tests. If it is called within a describe calls fn, the suite will default to that parent describe calls returned TestSuite. If it is not called within a describe calls fn, the suite will default to the TestSuite representing the global group of tests.

import ItDefinition
import { ItDefinition } from "https://dotland.deno.dev/x/justaos@v0.1.3/test.deps.ts";

A BDD interface to Deno.test() API.