Allows to set workers as a percentage of logical CPUs, for example "50%". Examples : ```bash npx playwright test --workers 3 npx playwright test --workers 50% ``` ```js const config: PlaywrightTestConfig = { // ... workers: '33%', } ```