Fskip
Bun

function

test.describe.skip

function skip(
name?: string,
options?: TestOptions,
fn?: SuiteFn
): Promise<void>;

Shorthand for skipping a suite. This is the same as calling describe with options.skip set to true.

function skip(
name?: string,
fn?: SuiteFn
): Promise<void>;

Shorthand for skipping a suite. This is the same as calling describe with options.skip set to true.

function skip(
options?: TestOptions,
fn?: SuiteFn
): Promise<void>;

Shorthand for skipping a suite. This is the same as calling describe with options.skip set to true.

function skip(
fn?: SuiteFn
): Promise<void>;

Shorthand for skipping a suite. This is the same as calling describe with options.skip set to true.