Package-level declarations
Functions
Link copied to clipboard
suspend external fun only(options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Void
suspend external fun only(name: String = definedExternally, options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Void
Link copied to clipboard
external fun onlyAsync(name: String = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
external fun onlyAsync(options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
external fun onlyAsync(name: String = definedExternally, options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
Shorthand for marking a suite as only
. This is the same as calling {@link describe} with options.only
set to true
.
Link copied to clipboard
suspend external fun skip(options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Void
suspend external fun skip(name: String = definedExternally, options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Void
Link copied to clipboard
external fun skipAsync(name: String = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
external fun skipAsync(options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
external fun skipAsync(name: String = definedExternally, options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
Shorthand for skipping a suite. This is the same as calling {@link describe} with options.skip
set to true
.
Link copied to clipboard
suspend external fun todo(options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Void
suspend external fun todo(name: String = definedExternally, options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Void
Link copied to clipboard
external fun todoAsync(name: String = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
external fun todoAsync(options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
external fun todoAsync(name: String = definedExternally, options: TestOptions = definedExternally, fn: SuiteFn = definedExternally): Promise<Void>
Shorthand for marking a suite as TODO
. This is the same as calling {@link describe} with options.todo
set to true
.