From ad71f843868cbe8e6534929911ce161ce617ea0c Mon Sep 17 00:00:00 2001 From: Robin Munn Date: Tue, 18 Jun 2024 09:45:38 +0700 Subject: [PATCH] Fix typo in 1.45 release notes --- docs/src/release-notes-js.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/src/release-notes-js.md b/docs/src/release-notes-js.md index 63181ebc60..839a4ab07b 100644 --- a/docs/src/release-notes-js.md +++ b/docs/src/release-notes-js.md @@ -43,10 +43,10 @@ See [the clock guide](./clock.md) for more details. ```sh # Avoid TTY features that output ANSI control sequences - PLAYWRIGHT_FORCE_TTY=0 npx playwrigh test + PLAYWRIGHT_FORCE_TTY=0 npx playwright test # Enable TTY features, assuming a terminal width 80 - PLAYWRIGHT_FORCE_TTY=80 npx playwrigh test + PLAYWRIGHT_FORCE_TTY=80 npx playwright test ``` - New options [`property: TestConfig.respectGitIgnore`] and [`property: TestProject.respectGitIgnore`] control whether files matching `.gitignore` patterns are excluded when searching for tests.