Package-level declarations

Types

Link copied to clipboard
external class LcovReporter : Transform
Link copied to clipboard
sealed external interface ReporterConstructorWrapper<T : Transform>
Link copied to clipboard
external class SpecReporter : Transform
Link copied to clipboard
typealias TestEvent = Any
Link copied to clipboard

Properties

Link copied to clipboard
external val lcov: LcovReporter

The lcov reporter outputs test coverage when used with the --experimental-test-coverage flag.

Link copied to clipboard

The spec reporter outputs the test results in a human-readable format.

Functions

Link copied to clipboard
external fun dot(source: TestEventGenerator): AsyncGenerator<String, Void, *>

The dot reporter outputs the test results in a compact format, where each passing test is represented by a ., and each failing test is represented by a X.

Link copied to clipboard
external fun junit(source: TestEventGenerator): AsyncGenerator<String, Void, *>

The junit reporter outputs test results in a jUnit XML format.

Link copied to clipboard
external fun tap(source: TestEventGenerator): AsyncGenerator<String, Void, *>

The tap reporter outputs the test results in the TAP format.