-
Notifications
You must be signed in to change notification settings - Fork 127
Open
Description
I have a script where I build a JSON with Cypress options, then I call Cypress.run() passing the options by parameters
.
Example:
const options: Partial<CypressCommandLine.CypressRunOptions> = {
reporter: 'mochawesome',
browser: 'electron',
config: {
video: false,
waitForAnimations: true,
retries: {
runMode: 1
}
},
env: {
tags: '@smoke',
loaderSource: 'myToolName'
}
};
//...
Cypress.run(options);
Is there any compatible command to run these tests in parallel?
Something like CypressParallel.run(options)
?
Metadata
Metadata
Assignees
Labels
No labels