From d4ac75bcb6581611c37d2266bbe2dca593e7a4b8 Mon Sep 17 00:00:00 2001 From: Mahtab Nejad <41478863+mahtabnejad90@users.noreply.github.com> Date: Tue, 9 May 2023 03:00:24 +0100 Subject: [PATCH] docs: fixed typo in test-parallel-js.md (#22817) --- docs/src/test-parallel-js.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/test-parallel-js.md b/docs/src/test-parallel-js.md index 8f705baac4..3ad691bcd8 100644 --- a/docs/src/test-parallel-js.md +++ b/docs/src/test-parallel-js.md @@ -176,7 +176,7 @@ When you **disable parallel test execution**, Playwright Test runs test files in ### Use a "test list" file :::warning -Tests lists are discouraged and supported as a best-effort only. Some fetures such as VS Code Extension and tracing may not work properly with test lists. +Tests lists are discouraged and supported as a best-effort only. Some features such as VS Code Extension and tracing may not work properly with test lists. ::: You can put your tests in helper functions in multiple files. Consider the following example where tests are not defined directly in the file, but rather in a wrapper function.