removed another .skip

This commit is contained in:
Jared Ramon Elizan 2022-07-15 09:12:39 +08:00
parent 0cf0c04a5e
commit 03470c704b
1 changed files with 1 additions and 1 deletions

View File

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