docs: more accurate test id description (#30487)
Reference https://github.com/microsoft/playwright/issues/30430
This commit is contained in:
parent
b52cd7e4dc
commit
67c430435a
|
|
@ -34,7 +34,7 @@ See also [`property: TestResult.status`] for the actual status.
|
||||||
* since: v1.25
|
* since: v1.25
|
||||||
- type: <[string]>
|
- 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
|
## property: TestCase.location
|
||||||
* since: v1.10
|
* since: v1.10
|
||||||
|
|
|
||||||
4
packages/playwright/types/testReporter.d.ts
vendored
4
packages/playwright/types/testReporter.d.ts
vendored
|
|
@ -710,8 +710,8 @@ export interface TestCase {
|
||||||
expectedStatus: "passed"|"failed"|"timedOut"|"skipped"|"interrupted";
|
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
|
* A test ID that is computed based on the test file name, test title and project name. The ID is unique within
|
||||||
* history ID.
|
* Playwright session.
|
||||||
*/
|
*/
|
||||||
id: string;
|
id: string;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue