diff --git a/sumAll.spec.js b/sumAll.spec.js index f48ecc4..f2a1052 100644 --- a/sumAll.spec.js +++ b/sumAll.spec.js @@ -7,7 +7,7 @@ describe('sumAll', function() { it('works with large numbers', function() { expect(sumAll(1, 4000)).toEqual(8002000); }); - xit('works with larger number first', function() { + it('works with larger number first', function() { expect(sumAll(123, 1)).toEqual(7626); }); xit('returns ERROR with negative numbers', function() {