- Issue created by @bnjmnm
- πΊπΈUnited States mglaman WI, USA
I've had better luck with Playwright by using their sharding over multiple jobs. We have multiple jobs and pass `--shard=1/3` or `--shard=2/3`, etc to each. Then Playwright knows how to chunk the tests.
We've also used some tagging for specific tests as well, like `--grep=@multilingual`. But then other jobs need `--grep-invert=@multilingual`
- π¬π§United Kingdom justafish London, UK
we first need to reformat some of the Playwright tests with the new package and split them into ones which can run in parallel and ones which need to run in isolation, which should stablise them π€