Fixed usage of test (skip all but first) in exercise

This commit is contained in:
Miko 2023-09-18 23:11:41 +02:00 committed by GitHub
parent 3b84151724
commit e5c0f77d21
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -16,7 +16,7 @@ describe('fibonacci', () => {
test.skip('25th fibonacci number is 75025', () => { test.skip('25th fibonacci number is 75025', () => {
expect(fibonacci(25)).toBe(75025); expect(fibonacci(25)).toBe(75025);
}); });
test('0th fibonacci number is o', () => { test.skip('0th fibonacci number is o', () => {
expect(fibonacci(0)).toBe(0); expect(fibonacci(0)).toBe(0);
}); });
test.skip('doesn\'t accept negatives', () => { test.skip('doesn\'t accept negatives', () => {