Fskip
Bun

function

test.it.skip

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

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

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

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

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

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

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

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