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:660


errors

errors: string[]

Array of error messages if the test failed.

Defined in

src/sdk/models.ts:662


status

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

The status of the test.

Defined in

src/sdk/models.ts:664


testPath

testPath: string[]

The path to the test in the test suite.

Defined in

src/sdk/models.ts:666