You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 7, 2025. It is now read-only.
The cost of fixing of flickering tests is sometimes very high. Hence, I am using rspec-retry for chrome headless feature tests as sometimes, this is the only way to get a green build. Pragmatic way :)
With this issue, I'd like to discuss a new feature that I can implement:
Feature: NotificationWhen a test is silently failing and passes after being re-run by `rspec-retry` - it's flacky / flickering / randomly failing - I want to be notified, So I can address it and make my build faster.
Background:
* Number of retries: 2
Scenario: "Real failure" => Do not notifyWhen a real failure occurs 🔴🔴, (2 failed attempts)
Then it should not notify the developer as there could be hundreds
Scenario: 1 "Flickering"" => NotifyWhen a test is flickering 🔴💚, (1 failed attempt followed by a "passed")
Then it should notify the developer with the BUILD url and details about the test which failed
I have already implemented a Slack notification so it's so much work.