Fix types
This commit is contained in:
parent
eb18477c6b
commit
1c1a0d9783
|
|
@ -4,7 +4,7 @@
|
|||
|
||||
`Suite` is a group of tests. All tests in Playwright Test form the following hierarchy:
|
||||
|
||||
* Root suite has a child suite for each [ReporterProject].
|
||||
* Root suite has a child suite for each [FullProject].
|
||||
* Project suite #1. Has a child suite for each test file in the project.
|
||||
* File suite #1
|
||||
* [TestCase] #1
|
||||
|
|
@ -46,7 +46,7 @@ Parent suite, missing for the root suite.
|
|||
|
||||
## method: Suite.project
|
||||
* since: v1.10
|
||||
- returns: ?<[ReporterProject]>
|
||||
- returns: ?<[FullProject]>
|
||||
|
||||
Configuration of the project this suite belongs to, or [void] for the root suite.
|
||||
|
||||
|
|
|
|||
2
packages/playwright/types/testReporter.d.ts
vendored
2
packages/playwright/types/testReporter.d.ts
vendored
|
|
@ -182,7 +182,7 @@ export interface FullProject<TestArgs = {}, WorkerArgs = {}> {
|
|||
|
||||
/**
|
||||
* `Suite` is a group of tests. All tests in Playwright Test form the following hierarchy:
|
||||
* - Root suite has a child suite for each [ReporterProject].
|
||||
* - Root suite has a child suite for each {@link FullProject}.
|
||||
* - Project suite #1. Has a child suite for each test file in the project.
|
||||
* - File suite #1
|
||||
* - {@link TestCase} #1
|
||||
|
|
|
|||
Loading…
Reference in a new issue