Fixed usage of test (skip all but first) in exercise
This commit is contained in:
parent
3b84151724
commit
e5c0f77d21
|
@ -16,7 +16,7 @@ describe('fibonacci', () => {
|
|||
test.skip('25th fibonacci number is 75025', () => {
|
||||
expect(fibonacci(25)).toBe(75025);
|
||||
});
|
||||
test('0th fibonacci number is o', () => {
|
||||
test.skip('0th fibonacci number is o', () => {
|
||||
expect(fibonacci(0)).toBe(0);
|
||||
});
|
||||
test.skip('doesn\'t accept negatives', () => {
|
||||
|
|
Loading…
Reference in New Issue