From e27e5fdfe5bbe0ce36f2715cadd162570cf4ec46 Mon Sep 17 00:00:00 2001 From: Mohammed Nabeel <mohdnabeel13@gmail.com> Date: Fri, 17 Jul 2020 10:57:02 +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 a5ba804..a949839 100644 --- a/sumAll.spec.js +++ b/sumAll.spec.js @@ -16,7 +16,7 @@ describe('sumAll', function() { it('returns ERROR with non-number parameters', function() { expect(sumAll(10, "90")).toEqual('ERROR'); }); - xit('returns ERROR with non-number parameters', function() { + it('returns ERROR with non-number parameters', function() { expect(sumAll(10, [90, 1])).toEqual('ERROR'); }); }); \ No newline at end of file