Flaky tests என்பது நிலையற்றபடி pass அல்லது fail ஆகும் tests — code மாற்றங்கள் இல்லாமல் சில சமயம் pass ஆகிறது, சில சமயம் same code இல் fail ஆகிறது. இவை ஒரு பெரிய சிக்கல், ஏனெனில் அவை test suite இல் நம்பிக்கையை அழிக்கின்றன. அவற்றின் காரணங்கள் மற்றும் சரிசெய்தல்கள் புரிந்துகொள்வது முக்கியம்.
Flaky tests என்றால் என்ன மற்றும் ஏன் அவை ஆபத்தாக உள்ளன
A FLAKY test gives INCONSISTENT results (pass sometimes, fail other times) on the SAME code:
→ harmful: ERODES TRUST — people start ignoring failures ("oh, it's just flaky") →
real failures get missed too
→ waste time on false alarms / re-runs; break CI; reduce confidence in the whole suite
→ Flaky tests are worse than no test if they make people distrust all tests.
