From b56a351b3ecba923214bb55f19726730bbaa9c33 Mon Sep 17 00:00:00 2001 From: Mathias Leppich Date: Wed, 15 May 2024 17:06:02 +0200 Subject: [PATCH] doc fix remove unfinished sentence --- docs/src/test-api/class-testconfig.md | 2 +- packages/playwright/types/test.d.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/src/test-api/class-testconfig.md b/docs/src/test-api/class-testconfig.md index b4a2121f70..df4a3add73 100644 --- a/docs/src/test-api/class-testconfig.md +++ b/docs/src/test-api/class-testconfig.md @@ -483,7 +483,7 @@ export default defineConfig({ Shuffle the order of test groups with a seed. By default tests are run in the order they are discovered, which is mostly alphabetical. This could lead to an uneven distribution of slow and fast tests. Shuffling the order of tests in a deterministic way can help to distribute the load more evenly. -The sharding seed is a string that is used to initialize a random number generator. The configured value needs to be the same for all shards, to make sure +The sharding seed is a string that is used to initialize a random number generator. Learn more about [parallelism and sharding](../test-parallel.md) with Playwright Test. diff --git a/packages/playwright/types/test.d.ts b/packages/playwright/types/test.d.ts index 00d1fb3219..0f8b7f92c7 100644 --- a/packages/playwright/types/test.d.ts +++ b/packages/playwright/types/test.d.ts @@ -1412,8 +1412,7 @@ interface TestConfig { * mostly alphabetical. This could lead to an uneven distribution of slow and fast tests. Shuffling the order of tests * in a deterministic way can help to distribute the load more evenly. * - * The sharding seed is a string that is used to initialize a random number generator. The configured value needs to - * be the same for all shards, to make sure + * The sharding seed is a string that is used to initialize a random number generator. * * Learn more about [parallelism and sharding](https://playwright.dev/docs/test-parallel) with Playwright Test. *