For the complete documentation index, see llms.txt. This page is also available as Markdown.

list_configs

List the Playwright configurations available to runs.

List the Playwright configurations runs can execute under — the template's plus any the project has defined.

Request

GET /api/v1/ops/projects/{project}/configs
Parameter
In
Type
Required
Description

project

path

string

yes

The project's public id.

curl -H "Authorization: Bearer $TESTVIBE_API_KEY" \
  "$TESTVIBE_SERVER/api/v1/ops/projects/$PROJECT/configs"
testvibe configs

Tool list_configs — optional project.

Response

[
  { "name": "Default", "source": "template" },
  { "name": "Mobile", "source": "project" }
]

Pass a name as the config argument of run_feature.

Errors

HTTP
When

404 not_found

No such project in this workspace.

Last updated

Was this helpful?