8000 solved test #3 and #4 · ImJasc/javascript-exercises@4172c56 · GitHub
[go: up one dir, main page]

Skip to content

Commit 4172c56

Browse files
committed
1 parent 59d38a1 commit 4172c56

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

05_sumAll/sumAll.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ describe('sumAll', () => {
77
test('works with large numbers', () => {
88
expect(sumAll(1, 4000)).toEqual(8002000);
99
});
10-
test.skip('works with larger number first', () => {
10+
test('works with larger number first', () => {
1111
expect(sumAll(123, 1)).toEqual(7626);
1212
});
13-
test.skip('returns ERROR with negative numbers', () => {
13+
test('returns ERROR with negative numbers', () => {
1414
expect(sumAll(-10, 4)).toEqual('ERROR');
1515
});
1616
test.skip('returns ERROR with non-integer parameters', () => {

0 commit comments

Comments
 (0)
0