odin-default-js-exercises/sumAll/sumAll.spec.js

26 lines
824 B
JavaScript
Raw Normal View History

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