Lately I get a lot of intermittent pipeline failures in Playwright for webkit. I don’t really want to spend the time on pushing up to the pipeline to view something I could see on my own computer if only I could reproduce the conditions.
My current solution looks like this (I’m also using nx
):
- Run
while yarn nx run-many -t e2e --output-style=stream --project=webkit --skip-nx-cache; do :; done
- Run the same again in a different terminal.
PrayWait.- Review the eventual failure.
What is the optimum way to make my flaky tests fail quickly? Ideally in one script.