Skip to main content

Interface: TestResult

Represents the result of a single test.

Properties

duration

duration: number

Time taken to run the test in milliseconds.

Defined in

src/sdk/models.ts:653


errors

errors: string[]

Array of error messages if the test failed.

Defined in

src/sdk/models.ts:655


status

status: "pass" | "fail" | "skip"

The status of the test.

Defined in

src/sdk/models.ts:657


testPath

testPath: string[]

The path to the test in the test suite.

Defined in

src/sdk/models.ts:659