2018-08-07 10:23:28 +00:00
|
|
|
const sumAll = require('./sumAll')
|
2017-08-24 13:26:01 +00:00
|
|
|
|
2021-03-03 02:13:24 +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-03-03 02:13:24 +00:00
|
|
|
test.skip('works with large numbers', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(1, 4000)).toEqual(8002000);
|
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('works with larger number first', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(123, 1)).toEqual(7626);
|
|
|
|
});
|
2021-03-03 02:13:24 +00:00
|
|
|
test.skip('returns ERROR with negative numbers', () => {
|
2017-08-24 13:26:01 +00:00
|
|
|
expect(sumAll(-10, 4)).toEqual('ERROR');
|
|
|
|
});
|
2021-03-03 02:13:24 +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-03-03 02:13:24 +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');
|
|
|
|
});
|
|
|
|
});
|