Passed works with larger number first
This commit is contained in:
parent
c0c9e10873
commit
607fcec7ca
|
@ -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() {
|
||||||
|
|
Loading…
Reference in New Issue