Test results - Status
No Python support
We have not implemented this SDK function in Python yet.
The function getTestResultStatus()
retrieves the status of a test result.
Example
typescript
import {init ,getTestResultStatus } from "@gentrace/core";consttestResultStatus = awaitgetTestResultStatus ("FACB6642-4725-4FAE-9323-634E72533C89");console .log ("Total:",testResultStatus .total );console .log ("Pending:",testResultStatus .pending );console .log ("Failure:",testResultStatus .failure );console .log ("Done:",testResultStatus .done );
Arguments
resultId: string (UUID)
Return value
statusInfo: TestResultStatus
Types
🛠️ TestResultStatus
total: number
Total number of test runs
pending: number
Total number of pending test runs
failure: number
Total number of failed test runs
done: number
Total number of completed test runs