Fix types

This commit is contained in:
Yury Semikhatsky 2024-04-02 14:49:33 -07:00
parent eb18477c6b
commit 1c1a0d9783
2 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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