2018-08-07 11:23:28 +01:00
|
|
|
const sumAll = require('./sumAll')
|
2017-08-24 08:26:01 -05:00
|
|
|
|
2021-03-03 15:13:24 +13:00
|
|
|
describe('sumAll', () => {
|
|
|
|
|
test('sums numbers within the range', () => {
|
2017-08-24 08:26:01 -05:00
|
|
|
expect(sumAll(1, 4)).toEqual(10);
|
|
|
|
|
});
|
2021-03-03 15:13:24 +13:00
|
|
|
test.skip('works with large numbers', () => {
|
2017-08-24 08:26:01 -05:00
|
|
|
expect(sumAll(1, 4000)).toEqual(8002000);
|
|
|
|
|
});
|
2021-03-03 15:13:24 +13:00
|
|
|
test.skip('works with larger number first', () => {
|
2017-08-24 08:26:01 -05:00
|
|
|
expect(sumAll(123, 1)).toEqual(7626);
|
|
|
|
|
});
|
2021-03-03 15:13:24 +13:00
|
|
|
test.skip('returns ERROR with negative numbers', () => {
|
2017-08-24 08:26:01 -05:00
|
|
|
expect(sumAll(-10, 4)).toEqual('ERROR');
|
|
|
|
|
});
|
2024-07-17 18:02:56 +05:00
|
|
|
test.skip('returns ERROR with non-integer parameters', () => {
|
|
|
|
|
expect(sumAll(2.5, 4)).toEqual('ERROR');
|
|
|
|
|
});
|
2021-03-03 15:13:24 +13:00
|
|
|
test.skip('returns ERROR with non-number parameters', () => {
|
2017-08-24 08:26:01 -05:00
|
|
|
expect(sumAll(10, "90")).toEqual('ERROR');
|
|
|
|
|
});
|
2021-03-03 15:13:24 +13:00
|
|
|
test.skip('returns ERROR with non-number parameters', () => {
|
2017-08-24 08:26:01 -05:00
|
|
|
expect(sumAll(10, [90, 1])).toEqual('ERROR');
|
|
|
|
|
});
|
|
|
|
|
});
|