From c355d4d05a6ab50ec6a24b30cd4d604a0cd2350f Mon Sep 17 00:00:00 2001 From: Aldo Velasco Date: Mon, 23 Aug 2021 22:08:02 -0500 Subject: [PATCH] docs(test-parallel-js): fixes typo in retries (#8387) --- docs/src/test-parallel-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/test-parallel-js.md b/docs/src/test-parallel-js.md index bef12a3523..b0d7794109 100644 --- a/docs/src/test-parallel-js.md +++ b/docs/src/test-parallel-js.md @@ -57,9 +57,9 @@ You can disable any parallelism by allowing just a single worker at any time. Ei npx playwright test --workers=1 ``` -## Failed tests, retires and serial mode +## Failed tests, retries and serial mode -Should any test fail, Playwright Test will discard entire worker process along with the browsers used and will start a new one. Testing will continue in the new worker process, starting with retrying the failed test, or from the next test if retires are disabled. +Should any test fail, Playwright Test will discard entire worker process along with the browsers used and will start a new one. Testing will continue in the new worker process, starting with retrying the failed test, or from the next test if retries are disabled. This scheme works perfectly for independent tests and guarantees that failing tests can't affect healthy ones. Consider the following snippet: