From 25a5fd4ea79a1e89a984c9f21992de46fb836bf5 Mon Sep 17 00:00:00 2001 From: Ariya Hidayat <ariya@metabase.com> Date: Thu, 26 Aug 2021 06:06:42 -0700 Subject: [PATCH] Correct the instruction to run E2E tests (#17603) --- docs/developers-e2e-tests.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/developers-e2e-tests.md b/docs/developers-e2e-tests.md index 2ddff75fb1b..20965b135c5 100644 --- a/docs/developers-e2e-tests.md +++ b/docs/developers-e2e-tests.md @@ -13,10 +13,10 @@ To run all Cypress tests programmatically in the terminal: yarn run test-cypress-no-build ``` -You can run a specific set of scenarios by using the `--folder` flag. +You can run a specific set of scenarios by using the `--folder` flag, which will pick up the chosen scenarios under `frontend/test/metabase/scenarios/`. ``` -yarn run test-cypress-no-build --folder frontend/test/metabase/scenarios/auth/ +yarn run test-cypress-no-build --folder sharing ``` You can quickly test a single file only by using the `--spec` flag. -- GitLab