Ftodo
Bun

function

test.it.todo

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

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

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

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

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

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

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

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