From 03470c704b7bd8ad98ab6cc40d75e0b41781d7e2 Mon Sep 17 00:00:00 2001 From: Jared Ramon Elizan Date: Fri, 15 Jul 2022 09:12:39 +0800 Subject: [PATCH] removed another .skip --- 05_sumAll/sumAll.spec.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/05_sumAll/sumAll.spec.js b/05_sumAll/sumAll.spec.js index e2f1c95..6c53087 100644 --- a/05_sumAll/sumAll.spec.js +++ b/05_sumAll/sumAll.spec.js @@ -7,7 +7,7 @@ describe('sumAll', () => { test('works with large numbers', () => { expect(sumAll(1, 4000)).toEqual(8002000); }); - test.skip('works with larger number first', () => { + test('works with larger number first', () => { expect(sumAll(123, 1)).toEqual(7626); }); test.skip('returns ERROR with negative numbers', () => {