removed a .skip

This commit is contained in:
Jared Ramon Elizan 2022-07-15 09:08:46 +08:00
parent 9921be17de
commit 0cf0c04a5e
1 changed files with 1 additions and 1 deletions

View File

@ -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', () => {