mirror of
https://github.com/10h30/odin-javascript-exercises.git
synced 2026-06-05 15:09:09 +09:00
Fixed usage of test (skip all but first) in exercise
This commit is contained in:
@@ -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', () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user