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

78 lines
1.9 KiB
JavaScript
Raw Normal View History

2017-09-20 23:04:46 +00:00
var calculator = require ('./calculator.js');
describe('add', function() {
it('adds 0 and 0', function() {
expect(calculator.add(0,0)).toEqual(0);
});
xit('adds 2 and 2', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.add(2,2)).toEqual(4);
});
xit('adds positive numbers', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.add(2,6)).toEqual(8);
});
});
describe('subtract', function() {
xit('subtracts numbers', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.subtract(10,4)).toEqual(6);
});
});
describe('sum', function() {
xit('computes the sum of an empty array', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.sum([])).toEqual(0);
});
xit('computes the sum of an array of one number', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.sum([7])).toEqual(7);
});
xit('computes the sum of an array of two numbers', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.sum([7,11])).toEqual(18);
});
xit('computes the sum of an array of many numbers', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.sum([1,3,5,7,9])).toEqual(25);
});
});
describe('multiply', function() {
xit('multiplies two numbers', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.multiply([2,4])).toEqual(8);
});
xit('multiplies several numbers', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.multiply([2,4,6,8,10,12,14])).toEqual(645120);
});
});
describe('power', function() {
xit('raises one number to the power of another number', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.power(4,3)).toEqual(64); // 4 to third power is 64
});
});
describe('factorial', function() {
xit('computes the factorial of 0', function() {
2018-01-01 14:56:20 +00:00
expect(calculator.factorial(0)).toEqual(1); // 0! = 1
2017-09-20 23:04:46 +00:00
});
xit('computes the factorial of 1', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.factorial(1)).toEqual(1);
});
xit('computes the factorial of 2', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.factorial(2)).toEqual(2);
});
xit('computes the factorial of 5', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.factorial(5)).toEqual(120);
});
xit('computes the factorial of 10', function() {
2017-09-20 23:04:46 +00:00
expect(calculator.factorial(10)).toEqual(3628800);
});
2018-01-01 14:56:20 +00:00
});