mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
zero factorial is 1
This commit is contained in:
@@ -56,7 +56,7 @@ describe('power', function() {
|
||||
|
||||
describe('factorial', function() {
|
||||
it('computes the factorial of 0', function() {
|
||||
expect(calculator.factorial(0)).toEqual(0);
|
||||
expect(calculator.factorial(0)).toEqual(1); // 0! = 1
|
||||
});
|
||||
|
||||
it('computes the factorial of 1', function() {
|
||||
|
||||
Reference in New Issue
Block a user