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 3c636be commit 0c5480dCopy full SHA for 0c5480d
05_sumAll/sumAll.spec.js
@@ -13,6 +13,9 @@ describe('sumAll', () => {
13
test.skip('returns ERROR with negative numbers', () => {
14
expect(sumAll(-10, 4)).toEqual('ERROR');
15
});
16
+ test.skip('returns ERROR with non-integer parameters', () => {
17
+ expect(sumAll(2.5, 4)).toEqual('ERROR');
18
+ });
19
test.skip('returns ERROR with non-number parameters', () => {
20
expect(sumAll(10, "90")).toEqual('ERROR');
21
0 commit comments