From 95fc194e71652433c7aacf5b6312faab42657332 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 24 Jul 2023 20:10:39 +0200 Subject: [PATCH] docs(annotations): grep snippets follow-ups #24304 (#24367) Follow-ups to #24304. Wasn't rendered otherwise: https://playwright.dev/docs/next/test-annotations --- docs/src/test-annotations-js.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docs/src/test-annotations-js.md b/docs/src/test-annotations-js.md index c3ed61b1ba..9272b97215 100644 --- a/docs/src/test-annotations-js.md +++ b/docs/src/test-annotations-js.md @@ -96,12 +96,14 @@ npx playwright test --grep "@fast|@slow" On Windows shells: - PowerShell - ```powershell + + ```bash npx playwright test --grep --% "@fast^|@slow" ``` - Command Prompt(cmd.exe) / Git Bash: - ```cmd + + ```bash npx playwright test --grep "@fast^|@slow" ```