Be more explicit when executing individual tests for Admin UI tests (#44499)

Signed-off-by: Martin Bartoš <mabartos@redhat.com>
This commit is contained in:
Martin Bartoš
2025-11-28 08:12:37 +01:00
committed by GitHub
parent 3ed15e740a
commit 427d0f181f

View File

@@ -66,3 +66,13 @@ Alternatively the tests can also run headless as follows:
```
pnpm test:integration
```
#### Running specific tests
You can execute specific individual tests as follows:
```bash
# f.e. pnpm test:integration -- test/clients/main.spec.ts
pnpm test:integration -- <path-to-the-test-or-name>
```
You can specify the full path or just the test file name.