Update docs

This commit is contained in:
Yury Semikhatsky 2024-04-15 15:30:00 -07:00
parent 2fe5fa6aaf
commit 2a48f77e42
2 changed files with 3 additions and 2 deletions

View file

@ -148,7 +148,7 @@ export default defineConfig({
* since: v1.10
- type: ?<[int]>
Maximum time in milliseconds the whole test suite can run. Zero timeout (default) disables this behavior. Useful on CI to prevent broken setup from running too long and wasting resources. Learn more about [various timeouts](../test-timeouts.md).
Maximum time in milliseconds the whole test suite can run. Zero timeout (default) disables this behavior. Useful on CI to prevent broken setup from running too long and wasting resources. Note that even if global timeout is reached, Playwright will still allow up to 30 extra seconds for teardown hooks to finish. Learn more about [various timeouts](../test-timeouts.md).
**Usage**

View file

@ -1060,7 +1060,8 @@ interface TestConfig<TestArgs = {}, WorkerArgs = {}> {
/**
* Maximum time in milliseconds the whole test suite can run. Zero timeout (default) disables this behavior. Useful on
* CI to prevent broken setup from running too long and wasting resources. Learn more about
* CI to prevent broken setup from running too long and wasting resources. Note that even if global timeout is
* reached, Playwright will still allow up to 30 extra seconds for teardown hooks to finish. Learn more about
* [various timeouts](https://playwright.dev/docs/test-timeouts).
*
* **Usage**