Complete the code to record test results to Cypress Dashboard.
cypress run --[1]The --record flag is used to send test results to the Cypress Dashboard service.
Complete the code to enable recording in the Cypress config file.
"[1]": true
Setting "record": true in the config enables sending test results to the Cypress Dashboard.
Fix the error in the command to run tests and record results.
cypress run --[1]The correct flag to enable recording test runs to the Dashboard is --record.
Fill both blanks to configure project ID and enable recording in cypress.json.
{
"[1]": "your-project-id",
"[2]": true
}The projectId identifies your project in Cypress Dashboard, and record enables recording.
Fill all three blanks to write a command that runs tests, records results, and sets a group name.
cypress run --[1] --[2] "[3]"
The command uses --record to send results, --group to name the test group, and the group name string.