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