2021-04-30 09:49:46 +00:00
|
|
|
const sumAll = require('./sumAll')
|
2017-08-24 13:26:01 +00:00
|
|
|
|
2021-04-30 09:49:46 +00:00
|
|
|
describe('sumAll', () => {
|
|
|
|
test('sums numbers within the range', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(1, 4)).toEqual(10);
|
|
|
|
});
|
2021-04-30 09:49:46 +00:00
|
|
|
test.skip('works with large numbers', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(1, 4000)).toEqual(8002000);
|
|
|
|
});
|
2021-04-30 09:49:46 +00:00
|
|
|
test.skip('works with larger number first', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(123, 1)).toEqual(7626);
|
|
|
|
});
|
2021-04-30 09:49:46 +00:00
|
|
|
test.skip('returns ERROR with negative numbers', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(-10, 4)).toEqual('ERROR');
|
|
|
|
});
|
2021-04-30 09:49:46 +00:00
|
|
|
test.skip('returns ERROR with non-number parameters', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(10, "90")).toEqual('ERROR');
|
|
|
|
});
|
2021-04-30 09:49:46 +00:00
|
|
|
test.skip('returns ERROR with non-number parameters', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(10, [90, 1])).toEqual('ERROR');
|
|
|
|
});
|
|
|
|
});
|