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