From 0cf0c04a5e8e641a6490a87fdfa920ff3e7bc7db Mon Sep 17 00:00:00 2001 From: Jared Ramon Elizan Date: Fri, 15 Jul 2022 09:08:46 +0800 Subject: [PATCH] removed a .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 1a9fb7c..e2f1c95 100644 --- a/05_sumAll/sumAll.spec.js +++ b/05_sumAll/sumAll.spec.js @@ -4,7 +4,7 @@ describe('sumAll', () => { test('sums numbers within the range', () => { expect(sumAll(1, 4)).toEqual(10); }); - test.skip('works with large numbers', () => { + test('works with large numbers', () => { expect(sumAll(1, 4000)).toEqual(8002000); }); test.skip('works with larger number first', () => {