diff --git a/tests/array.test.js b/tests/array.test.js index 2e0e453..0947ad3 100644 --- a/tests/array.test.js +++ b/tests/array.test.js @@ -24,7 +24,7 @@ describe('Array Utilities', () => { }); // **EARLY FLAKE DETECTION**: uncomment this test to test Early Flake Detection - // test('flakyIsNull should return true if the value is null', () => { - // expect(flakyIsNull(null)).toBe(true); - // }); + test('flakyIsNull should return true if the value is null', () => { + expect(flakyIsNull(null)).toBe(true); + }); });