docs: more accurate test id description (#30487)

Reference https://github.com/microsoft/playwright/issues/30430
This commit is contained in:
Yury Semikhatsky 2024-04-23 14:07:37 -07:00 committed by GitHub
parent b52cd7e4dc
commit 67c430435a
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 3 additions and 3 deletions

View File

@ -34,7 +34,7 @@ See also [`property: TestResult.status`] for the actual status.
* since: v1.25
- type: <[string]>
Unique test ID that is computed based on the test file name, test title and project name. Test ID can be used as a history ID.
A test ID that is computed based on the test file name, test title and project name. The ID is unique within Playwright session.
## property: TestCase.location
* since: v1.10

View File

@ -710,8 +710,8 @@ export interface TestCase {
expectedStatus: "passed"|"failed"|"timedOut"|"skipped"|"interrupted";
/**
* Unique test ID that is computed based on the test file name, test title and project name. Test ID can be used as a
* history ID.
* A test ID that is computed based on the test file name, test title and project name. The ID is unique within
* Playwright session.
*/
id: string;