From 084976025233892e5ab90283612dbdb9dda497ba Mon Sep 17 00:00:00 2001 From: Rodrigo Roca <124577199+rodrigo-roca@users.noreply.github.com> Date: Tue, 4 Jun 2024 09:56:11 +0200 Subject: [PATCH] Update array.test.js --- tests/array.test.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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); + }); });