Get a test's status
squally-get-test-statusRetrieve flakiness status and active signals for a single test to quickly assess its reliability without scanning the full test list.
Instructions
The stored flakiness status and active signals for ONE test. Cheap - one findUnique. Use this when you are asking about a single test; do not reach for squally-list-flaky-tests, which is expensive.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | No | The spec file of the test, as stored (e.g. tests/checkout.spec.ts); an empty value means a test with no file. Pass it exactly as shown in Squally; do not URL-encode, the server does. Needed only when the name exists in several files - the ambiguous_test error lists them. | |
| testName | Yes | The full test name as Squally stores it (the Playwright title path), for example "checkout flow > completes payment". Pass the name exactly as shown in Squally; do not URL-encode, the server does. A name used in several spec files also needs filePath. | |
| projectId | Yes | A project id from GET /projects. |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| test | Yes | ||
| labels | Yes | ||
| status | Yes | ||
| project | Yes | ||
| activeSignals | Yes | ||
| awaitingFirstWrite | Yes | True when the test is known but no verdict has been stored for it yet; status then reads insufficient_data. |