Skip to content

Is there a CypressParallel.run() command for scripts? #210

@evertones

Description

@evertones

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

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions