From 427d0f181f9a64c85fd6fa6c864886cee8f56aa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20Barto=C5=A1?= Date: Fri, 28 Nov 2025 08:12:37 +0100 Subject: [PATCH] Be more explicit when executing individual tests for Admin UI tests (#44499) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Martin Bartoš --- js/apps/admin-ui/CONTRIBUTING.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/js/apps/admin-ui/CONTRIBUTING.md b/js/apps/admin-ui/CONTRIBUTING.md index 4306edb0204..103983d9dae 100644 --- a/js/apps/admin-ui/CONTRIBUTING.md +++ b/js/apps/admin-ui/CONTRIBUTING.md @@ -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 -- +``` + +You can specify the full path or just the test file name.