From c367d09672a441dab0831c64e2b0d76b5c41998a Mon Sep 17 00:00:00 2001 From: Alex Kinnee Date: Fri, 23 Feb 2024 18:15:30 -0500 Subject: [PATCH 1/2] Fix typo in README.md in npx command example Pretty sure this is a typo, and `npx cypress-parallel` was what was intended here. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 60f59a6..d28a24d 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ or Run with npx (no package installation needed) ``` -npx cy:parallel -s cy:run -t 2 -d '' -a '""' +npx cypress-parallel -s cy:run -t 2 -d '' -a '""' ``` ## Passing Specs From 65700f3e789428ecef65f6b5ec016250aa5e38ae Mon Sep 17 00:00:00 2001 From: Alex Kinnee Date: Fri, 23 Feb 2024 18:19:38 -0500 Subject: [PATCH 2/2] Also replace cy:run with cypress run in npx example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d28a24d..01bc5bd 100644 --- a/README.md +++ b/README.md @@ -64,7 +64,7 @@ or Run with npx (no package installation needed) ``` -npx cypress-parallel -s cy:run -t 2 -d '' -a '""' +npx cypress-parallel -s cypress run -t 2 -d '' -a '""' ``` ## Passing Specs