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

x/oauth2_server/test_deps.ts>describe

A standards compliant implementation of an OAuth 2.0 authorization server with PKCE support.
Latest
interface describe
import { type describe } from "https://deno.land/x/oauth2_server@0.12.0/test_deps.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.

function describe
import { describe } from "https://deno.land/x/oauth2_server@0.12.0/test_deps.ts";

Registers a test suite.

Parameters

...args: DescribeArgs<T>

Returns

TestSuite<T>