Skip to main content
Version: 4.7.14

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";
 
const testResultStatus = await getTestResultStatus("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