removed .skip

This commit is contained in:
Jared Ramon Elizan 2022-07-15 13:04:03 +08:00
parent 03470c704b
commit 3bda4fca20
1 changed files with 3 additions and 3 deletions

View File

@ -10,13 +10,13 @@ describe('sumAll', () => {
test('works with larger number first', () => {
expect(sumAll(123, 1)).toEqual(7626);
});
test.skip('returns ERROR with negative numbers', () => {
test('returns ERROR with negative numbers', () => {
expect(sumAll(-10, 4)).toEqual('ERROR');
});
test.skip('returns ERROR with non-number parameters', () => {
test('returns ERROR with non-number parameters', () => {
expect(sumAll(10, "90")).toEqual('ERROR');
});
test.skip('returns ERROR with non-number parameters', () => {
test('returns ERROR with non-number parameters', () => {
expect(sumAll(10, [90, 1])).toEqual('ERROR');
});
});