Skip to main content

function test.suite.skip

Overload 1

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

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

Parameters #

#name: string
optional
#options: TestOptions
optional
#fn: SuiteFn
optional

Return Type #

Promise<void>

Overload 2

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

Parameters #

#name: string
optional
#fn: SuiteFn
optional

Return Type #

Promise<void>

Overload 3

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

Parameters #

#options: TestOptions
optional
#fn: SuiteFn
optional

Return Type #

Promise<void>

Overload 4

#skip(fn?: SuiteFn): Promise<void>

Parameters #

#fn: SuiteFn
optional

Return Type #

Promise<void>

Did you find what you needed?

Privacy policy