2018-08-07 03:23:28 -07:00
|
|
|
const sumAll = require('./sumAll')
|
2017-08-24 06:26:01 -07:00
|
|
|
|
2021-03-02 18:13:24 -08:00
|
|
|
describe('sumAll', () => {
|
|
|
|
test('sums numbers within the range', () => {
|
2023-06-19 16:12:59 -07:00
|
|
|
expect(sumAll(1, 4)).toEqual(10)
|
|
|
|
})
|
|
|
|
test('works with large numbers', () => {
|
|
|
|
expect(sumAll(1, 4000)).toEqual(8002000)
|
|
|
|
})
|
|
|
|
test('works with larger number first', () => {
|
|
|
|
expect(sumAll(123, 1)).toEqual(7626)
|
|
|
|
})
|
|
|
|
test('returns ERROR with negative numbers', () => {
|
|
|
|
expect(sumAll(-10, 4)).toEqual('ERROR')
|
|
|
|
})
|
|
|
|
test('returns ERROR with non-number parameters', () => {
|
|
|
|
expect(sumAll(10, '90')).toEqual('ERROR')
|
|
|
|
})
|
|
|
|
test('returns ERROR with non-number parameters', () => {
|
|
|
|
expect(sumAll(10, [90, 1])).toEqual('ERROR')
|
|
|
|
})
|
|
|
|
})
|