Does anyone have some ideas on how to debug randomly #flaky #cypress #e2e tests? Errors always involve some sort of time out error of #network requests. Sometimes it's intercepted API calls, sometimes it's even the page request itself. They are only flaky in the #Gitlab pipeline. Locally they work just fine.
@odddev Historically when I've seen this it's actually not really a timeout network request but a leaked listener for a web request that never happens (due to some other errors). Another possibility I've seen is non-determinism of cypress tests building up a test database and hitting a pathological case where the web request takes longer than the cypress timeout.
@anderson_jon Thank you!