Skip to main content

listSuites

codebolt.autoTesting.listSuites(params: IListSuitesParams): Promise<IListSuitesResponse>

Lists all available test suites.

Parameters

Returns

  • Promise<[IListSuitesResponse](/docs/reference/type-reference/codeboltjs/interfaces/IListSuitesResponse)>: A promise that resolves to the list of test suites.

Examples

const suites = await codebolt.autoTesting.listSuites();
console.log('Available suites:', suites.payload.suites);

Notes

  • Returns all test suites
  • Useful for test discovery
  • No filtering currently supported