saucectl
saucectl copied to clipboard
Support more than one instance in parallel per suite
🚀 Feature Proposal
Support more than one instance at a time per suite to achieve fully parallel executions as in a local machine.
Motivation
We are able to execute more than one suite with the concurrency argument but spec files inside every suite are running in serial mode and there is no way to run them in parallel mode.
Which framework? Cypress, Playwright or TestCafe?
Hi @alexplischke sorry for the late response, we are using playwright
Ah! You can configure that one in the saucectl suite instead:
suites:
- name: "Chromium Mac13"
platformName: "macOS 13"
testMatch: [".*.js"]
params:
workers: 2
browserName: "chromium"
project: "chromium"