docs: TestInfo.titlePath does not include project (#32548)

This commit is contained in:
Yury Semikhatsky 2024-09-10 16:52:12 -07:00 committed by GitHub
parent 356517cddb
commit a4bd551597
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -451,7 +451,7 @@ The title of the currently running test as passed to `test(title, testFunction)`
* since: v1.10
- type: <[Array]<[string]>>
The full title path starting with the project.
The full title path starting with the test file name.
## property: TestInfo.workerIndex
* since: v1.10

View file

@ -8208,7 +8208,7 @@ export interface TestInfo {
title: string;
/**
* The full title path starting with the project.
* The full title path starting with the test file name.
*/
titlePath: Array<string>;