From 0b679ef6651affe5bf1e558d283a9894a8d7de95 Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel Date: Fri, 17 Jul 2020 10:56:24 +0300 Subject: [PATCH] Passed returns ERROR with non-number paramaters --- sumAll.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sumAll.spec.js b/sumAll.spec.js index 15a6a91..a5ba804 100644 --- a/sumAll.spec.js +++ b/sumAll.spec.js @@ -13,7 +13,7 @@ describe('sumAll', function() { it('returns ERROR with negative numbers', function() { expect(sumAll(-10, 4)).toEqual('ERROR'); }); - xit('returns ERROR with non-number parameters', function() { + it('returns ERROR with non-number parameters', function() { expect(sumAll(10, "90")).toEqual('ERROR'); }); xit('returns ERROR with non-number parameters', function() {