Passed works with larger number first

This commit is contained in:
Mohammed Nabeel 2020-07-17 10:51:35 +03:00
parent c0c9e10873
commit 607fcec7ca
1 changed files with 1 additions and 1 deletions

View File

@ -7,7 +7,7 @@ describe('sumAll', function() {
it('works with large numbers', function() { it('works with large numbers', function() {
expect(sumAll(1, 4000)).toEqual(8002000); 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); expect(sumAll(123, 1)).toEqual(7626);
}); });
xit('returns ERROR with negative numbers', function() { xit('returns ERROR with negative numbers', function() {