tests pass sumAll

This commit is contained in:
abduldoesramen 2023-06-23 15:29:53 +10:00
parent 80a1fe5c6c
commit b151f4e87f
2 changed files with 22 additions and 6 deletions

View File

@ -1,5 +1,21 @@
const sumAll = function() {
const sumAll = function (numOne, numTwo) {
/* Checks */
if (typeof numOne !== "number" || numOne < 0 || typeof numTwo !== "number" || numTwo < 0) {
return "ERROR";
}
if (numOne > numTwo) {
var placeHold = numTwo
numTwo = numOne;
numOne = placeHold;
}
var sum = 0;
for (i = numOne; i <= numTwo; i++) {
sum += i;
}
return sum;
};
// Do not edit below this line

View File

@ -4,19 +4,19 @@ describe('sumAll', () => {
test('sums numbers within the range', () => {
expect(sumAll(1, 4)).toEqual(10);
});
test.skip('works with large numbers', () => {
test('works with large numbers', () => {
expect(sumAll(1, 4000)).toEqual(8002000);
});
test.skip('works with larger number first', () => {
test('works with larger number first', () => {
expect(sumAll(123, 1)).toEqual(7626);
});
test.skip('returns ERROR with negative numbers', () => {
test('returns ERROR with negative numbers', () => {
expect(sumAll(-10, 4)).toEqual('ERROR');
});
test.skip('returns ERROR with non-number parameters', () => {
test('returns ERROR with non-number parameters', () => {
expect(sumAll(10, "90")).toEqual('ERROR');
});
test.skip('returns ERROR with non-number parameters', () => {
test('returns ERROR with non-number parameters', () => {
expect(sumAll(10, [90, 1])).toEqual('ERROR');
});
});