docs(annotations): grep snippets follow-ups #24304 (#24367)

Follow-ups to #24304.

Wasn't rendered otherwise:
https://playwright.dev/docs/next/test-annotations
This commit is contained in:
Max Schmitt 2023-07-24 20:10:39 +02:00 committed by GitHub
parent b1ab6484da
commit 95fc194e71
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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"
```