From 607fcec7ca4a0ef7afd51d527e8923459a0ed1ad Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Fri, 17 Jul 2020 10:51:35 +0300 Subject: [PATCH] Passed works with larger number first --- sumAll.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sumAll.spec.js b/sumAll.spec.js index f48ecc4..f2a1052 100644 --- a/sumAll.spec.js +++ b/sumAll.spec.js @@ -7,7 +7,7 @@ describe('sumAll', function() { it('works with large numbers', function() { expect(sumAll(1, 4000)).toEqual(8002000); }); - xit('works with larger number first', function() { + it('works with larger number first', function() { expect(sumAll(123, 1)).toEqual(7626); }); xit('returns ERROR with negative numbers', function() {