Skip to main content

getRun

client.autoTesting.getRun(id: string): Promise<TestRun>

Retrieves a specific test run by ID.

Returns the full test run record including per-case results, timing, and overall status.

Parameters

ParameterTypeRequiredDescription
idstringYesThe unique identifier of the test run

Returns

Promise<TestRun> — A promise that resolves to the TestRun object

Example

import { CodeBoltClient } from '@codebolt/clientsdk';

const client = new CodeBoltClient();

const result = await client.autoTesting.getRun('id');
console.log(result);