From 1681bfd7a0462e87e016d290b4e47fee1a5bf5ae Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miroslav=20Jona=C5=A1?= Date: Wed, 1 Feb 2023 12:21:00 +0100 Subject: [PATCH] docs(repo): update contributing package manager flag (#14736) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d045057a17..25bd3b19fe 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -136,7 +136,7 @@ nx e2e e2e-cli -t versions # I often add qqqq to my test name so I can use -t qq Sometimes tests pass locally but they fail on the CI. To reproduce the CI environment and be able to debug the issue, run: ```bash -NX_VERBOSE_LOGGING=true CI=true PACKAGE_MANAGER=pnpm yarn nx e2e e2e-cli --t="should do something is this test" +NX_VERBOSE_LOGGING=true CI=true SELECTED_PM=pnpm yarn nx e2e e2e-cli --t="should do something is this test" ``` The above command sets verbose logging (this exposes stack traces and underlying errors), sets the defaults to be CI-like and sets Pnpm as the selected package manager.