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


errors​

errors: string[]

Array of error messages if the test failed.

Defined in​

src/sdk/models.ts:698


status​

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

The status of the test.

Defined in​

src/sdk/models.ts:700


testPath​

testPath: string[]

The path to the test in the test suite.

Defined in​

src/sdk/models.ts:702