8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 59d38a1 commit 4172c56Copy full SHA for 4172c56
05_sumAll/sumAll.spec.js
@@ -7,10 +7,10 @@ describe('sumAll', () => {
7
test('works with large numbers', () => {
8
expect(sumAll(1, 4000)).toEqual(8002000);
9
});
10
- test.skip('works with larger number first', () => {
+ test('works with larger number first', () => {
11
expect(sumAll(123, 1)).toEqual(7626);
12
13
- test.skip('returns ERROR with negative numbers', () => {
+ test('returns ERROR with negative numbers', () => {
14
expect(sumAll(-10, 4)).toEqual('ERROR');
15
16
test.skip('returns ERROR with non-integer parameters', () => {
0 commit comments