Revert "Standardised function declaration calls across exercises"

This reverts commit 791a579823.
This commit is contained in:
Tatiana 2021-05-08 11:29:43 -07:00
parent 8b6d46300c
commit 405b47c452
4 changed files with 45 additions and 33 deletions

View File

@ -1,14 +1,26 @@
function add() {} function add () {
function subtract() {} }
function sum() {} function subtract () {
function multiply() {} }
function power() {} function sum () {
function factorial() {} }
function multiply () {
}
function power() {
}
function factorial() {
}
module.exports = { module.exports = {
add, add,

View File

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

View File

@ -1,3 +1,3 @@
const fibonacci = function () {}; const fibonacci = function () {};
module.exports = fibonacci; module.exports = fibonacci

View File

@ -1,3 +1,3 @@
let findTheOldest = function () {}; let findTheOldest = function() {
}
module.exports = findTheOldest; module.exports = findTheOldest;