Complete the code to run tests in parallel using Cypress CLI.
npx cypress run --[1]Using --parallel flag tells Cypress to run tests in parallel across machines.
Complete the code to specify the Cypress project ID for parallel runs.
npx cypress run --parallel --[1] your-project-idThe --record flag is used to specify that the test results should be recorded and linked to your Cypress Dashboard project using the project ID.
Fix the error in the command to enable parallel execution with recording.
npx cypress run --record --[1] your-key --parallelThe --key flag is needed to provide the record key for the project to enable recording and parallel runs.
Fill both blanks to configure parallel execution and specify the group name.
npx cypress run --[1] --record --key your-key --[2] "group1"
--parallel enables parallel execution, and --group names the test group for better reporting.
Fill all three blanks to run tests in parallel, record results, and specify the CI build ID.
npx cypress run --[1] --[2] --key your-key --group "build-[3]"
--parallel enables parallel runs, --record records results, and CI_BUILD_NUMBER is used to identify the build in the group name.