Merge pull request #369 from cats256/cats256-branch

Reformat test parameters for consistency
This commit is contained in:
Eric Olkowski 2023-07-20 18:28:53 -04:00 committed by GitHub
commit 9599e2ade3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 51 additions and 55 deletions

View File

@ -2,21 +2,21 @@ const calculator = require('./calculator');
describe('add', () => {
test('adds 0 and 0', () => {
expect(calculator.add(0,0)).toBe(0);
expect(calculator.add(0, 0)).toBe(0);
});
test.skip('adds 2 and 2', () => {
expect(calculator.add(2,2)).toBe(4);
expect(calculator.add(2, 2)).toBe(4);
});
test.skip('adds positive numbers', () => {
expect(calculator.add(2,6)).toBe(8);
expect(calculator.add(2, 6)).toBe(8);
});
});
describe('subtract', () => {
test.skip('subtracts numbers', () => {
expect(calculator.subtract(10,4)).toBe(6);
expect(calculator.subtract(10, 4)).toBe(6);
});
});
@ -30,27 +30,27 @@ describe('sum', () => {
});
test.skip('computes the sum of an array of two numbers', () => {
expect(calculator.sum([7,11])).toBe(18);
expect(calculator.sum([7, 11])).toBe(18);
});
test.skip('computes the sum of an array of many numbers', () => {
expect(calculator.sum([1,3,5,7,9])).toBe(25);
expect(calculator.sum([1, 3, 5, 7, 9])).toBe(25);
});
});
describe('multiply', () => {
test.skip('multiplies two numbers', () => {
expect(calculator.multiply(2,4)).toBe(8);
expect(calculator.multiply([2, 4])).toBe(8);
});
test.skip('multiplies several numbers', () => {
expect(calculator.multiply(2,4,6,8,10,12,14)).toBe(645120);
expect(calculator.multiply([2, 4, 6, 8, 10, 12, 14])).toBe(645120);
});
});
describe('power', () => {
test.skip('raises one number to the power of another number', () => {
expect(calculator.power(4,3)).toBe(64); // 4 to third power is 64
expect(calculator.power(4, 3)).toBe(64); // 4 to third power is 64
});
});

View File

@ -10,13 +10,9 @@ const sum = function (array) {
return array.reduce((total, current) => total + current, 0);
};
const multiply = function(...args){
let product = 1;
for (let i = 0; i < args.length; i++) {
product *= args[i];
}
return product;
};
const multiply = function (array) {
return array.reduce((product, current) => product * current)
};
const power = function (a, b) {
return Math.pow(a, b);