Skip to main content
The Deno 2 Release Candidate is here
Learn more
Module

x/justaos_orm/test/test.deps.ts>describe

JUSTAOS's ORM (Object–relational mapping) tool is built for Deno and provides transparent persistence for JavaScript objects to Postgres database.
Go to Latest
interface describe
import { type describe } from "https://deno.land/x/justaos_orm@v6.4.0/test/test.deps.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.

skip<T>(...args: ItArgs<T>): void

Registers a test suite with ignore set to true. Alias of .ignore().

function describe
import { describe } from "https://deno.land/x/justaos_orm@v6.4.0/test/test.deps.ts";

Registers a test suite.