Update calculator-solution.spec.js

This commit is contained in:
Will 2023-07-16 16:02:03 -05:00 committed by GitHub
parent e10ee035ad
commit f855eb51b2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 10 deletions

View File

@ -21,30 +21,30 @@ describe('subtract', () => {
});
describe('sum', () => {
test('computes the sum of an empty parameter', () => {
expect(calculator.sum()).toBe(0);
test('computes the sum of an empty array', () => {
expect(calculator.sum([])).toBe(0);
});
test('computes the sum of one number', () => {
expect(calculator.sum(7)).toBe(7);
test('computes the sum of an array of one number', () => {
expect(calculator.sum([7])).toBe(7);
});
test('computes the sum of two numbers', () => {
expect(calculator.sum(7, 11)).toBe(18);
test('computes the sum of an array of two numbers', () => {
expect(calculator.sum([7, 11])).toBe(18);
});
test('computes the sum of many numbers', () => {
expect(calculator.sum(1, 3, 5, 7, 9)).toBe(25);
test('computes the sum of an array of many numbers', () => {
expect(calculator.sum([1, 3, 5, 7, 9])).toBe(25);
});
});
describe('multiply', () => {
test('multiplies two numbers', () => {
expect(calculator.multiply(2, 4)).toBe(8);
expect(calculator.multiply([2, 4])).toBe(8);
});
test('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);
});
});