From c0c9e1087396f37d3f1a710966bf2c1dc0e05f5e Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Fri, 17 Jul 2020 10:50:41 +0300 Subject: [PATCH] Passed works with large numbers --- sumAll.spec.js | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/sumAll.spec.js b/sumAll.spec.js index 520adc1..f48ecc4 100644 --- a/sumAll.spec.js +++ b/sumAll.spec.js @@ -1,22 +1,22 @@ const sumAll = require('./sumAll') describe('sumAll', function() { - it('sums numbers within the range', function() { - expect(sumAll(1, 4)).toEqual(10); - }); - xit('works with large numbers', function() { - expect(sumAll(1, 4000)).toEqual(8002000); - }); - xit('works with larger number first', function() { - expect(sumAll(123, 1)).toEqual(7626); - }); - xit('returns ERROR with negative numbers', function() { - expect(sumAll(-10, 4)).toEqual('ERROR'); - }); - xit('returns ERROR with non-number parameters', function() { - expect(sumAll(10, "90")).toEqual('ERROR'); - }); - xit('returns ERROR with non-number parameters', function() { - expect(sumAll(10, [90, 1])).toEqual('ERROR'); - }); -}); + it('sums numbers within the range', function() { + expect(sumAll(1, 4)).toEqual(10); + }); + it('works with large numbers', function() { + expect(sumAll(1, 4000)).toEqual(8002000); + }); + xit('works with larger number first', function() { + expect(sumAll(123, 1)).toEqual(7626); + }); + xit('returns ERROR with negative numbers', function() { + expect(sumAll(-10, 4)).toEqual('ERROR'); + }); + xit('returns ERROR with non-number parameters', function() { + expect(sumAll(10, "90")).toEqual('ERROR'); + }); + xit('returns ERROR with non-number parameters', function() { + expect(sumAll(10, [90, 1])).toEqual('ERROR'); + }); +}); \ No newline at end of file