Yusuf Adeyemoblog.yusadolat.me·Apr 17, 2023Do Not Tolerate Flaky Tests. Fix Them (or Delete Them).As a DevOps engineer, you know the importance of testing in ensuring the quality and reliability of your software. However, not all tests are created equal, and some tests are more reliable than others. Flaky tests are tests that fail intermittently,...54 readsTesting
Jakub Olekhakubo.hashnode.dev·Aug 19, 2022How to run a (flaky) test multiple times using JestWhen you discover that your test is flaky - it might be a good idea to run it multiple times to further validate that what you've done to fix actually (maybe) fixes it. Using Jest it's pretty easy. You can replace test("it was flaky", () => {}) with:...2.6K readsshorts