Passed all remaining tests in exercise 10

This commit is contained in:
NetMan 2024-01-11 21:39:33 +01:00
parent f49cd7df96
commit fe94193f97
1 changed files with 4 additions and 4 deletions

View File

@ -28,16 +28,16 @@ describe('fibonacci', () => {
test('doesn\'t accept negatives', () => {
expect(fibonacci(-25)).toBe("OOPS");
});
test.skip('DOES accept strings', () => {
test('DOES accept strings', () => {
expect(fibonacci("0")).toBe(0);
});
test.skip('DOES accept strings', () => {
test('DOES accept strings', () => {
expect(fibonacci("1")).toBe(1);
});
test.skip('DOES accept strings', () => {
test('DOES accept strings', () => {
expect(fibonacci("2")).toBe(1);
});
test.skip('DOES accept strings', () => {
test('DOES accept strings', () => {
expect(fibonacci("8")).toBe(21);
});
});