From afcf8d296cf38deaff834cc4f29c4d78c684f582 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Wed, 19 Jun 2024 09:27:21 +0200 Subject: [PATCH] cherry-pick(#31350): docs: 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 63181ebc608e3..839a4ab07bc1e 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.