Files

26 lines
793 B
JavaScript
Raw Permalink Normal View History

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', () => {
expect(sumAll(2, 4)).toEqual(9);
2017-08-24 08:26:01 -05:00
});
2025-02-22 10:40:23 +09:00
test('works with large numbers', () => {
2017-08-24 08:26:01 -05:00
expect(sumAll(1, 4000)).toEqual(8002000);
});
2025-02-22 10:40:23 +09:00
test('works with larger number first', () => {
2017-08-24 08:26:01 -05:00
expect(sumAll(123, 1)).toEqual(7626);
});
2025-02-22 10:40:23 +09:00
test('returns ERROR with negative numbers', () => {
2017-08-24 08:26:01 -05:00
expect(sumAll(-10, 4)).toEqual('ERROR');
});
2025-02-22 10:40:23 +09:00
test('returns ERROR with non-integer parameters', () => {
expect(sumAll(2.5, 4)).toEqual('ERROR');
});
2025-02-22 10:40:23 +09:00
test('returns ERROR with non-number parameters', () => {
2017-08-24 08:26:01 -05:00
expect(sumAll(10, "90")).toEqual('ERROR');
});
2025-02-22 10:40:23 +09:00
test('returns ERROR with non-number parameters', () => {
2017-08-24 08:26:01 -05:00
expect(sumAll(10, [90, 1])).toEqual('ERROR');
});
});