playwright
playwright copied to clipboard
feat(test runner): workers as percentage
Allows to set workers as a percentage of logical CPUs, for example "50%".
Examples :
npx playwright test --workers 3
npx playwright test --workers 50%
const config: PlaywrightTestConfig = {
// ...
workers: '33%',
}
Fixes #17204