diff --git a/packages/playwright/types/test.d.ts b/packages/playwright/types/test.d.ts index d857176517..3fc1c8e4db 100644 --- a/packages/playwright/types/test.d.ts +++ b/packages/playwright/types/test.d.ts @@ -1400,7 +1400,7 @@ interface TestConfig { /** * Shard tests and execute only the selected shard. Specify in the one-based form like `{ total: 5, current: 2 }`. * - * Learn more about [parallelism and sharding](https://playwright.dev/docs/test-parallel) with Playwright Test. + * Learn more about [parallelism](https://playwright.dev/docs/test-parallel) and [sharding](https://playwright.dev/docs/test-sharding) with Playwright Test. * * **Usage** * @@ -1436,6 +1436,8 @@ interface TestConfig { * round-robin way. e.g. loop over test groups and always assign to the shard that has the lowest duration of * tests. new tests which were not present in the last run will use an average duration time. When no * `.last-run.json` could be found the behavior is identical to `'round-robin'`. + * + * Learn more about [sharding](https://playwright.dev/docs/test-sharding) with Playwright Test. */ shardingMode?: "partition"|"round-robin"|"duration-round-robin";