Ftodo
Bun

function

test.describe.todo

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

Shorthand for marking a suite as TODO. This is the same as calling describe with options.todo set to true.

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

Shorthand for marking a suite as TODO. This is the same as calling describe with options.todo set to true.

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

Shorthand for marking a suite as TODO. This is the same as calling describe with options.todo set to true.

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

Shorthand for marking a suite as TODO. This is the same as calling describe with options.todo set to true.