We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents cc479b5 + 3475115 commit c2ca1d7Copy full SHA for c2ca1d7
fibonacci/fibonacci.spec.js
@@ -19,6 +19,12 @@ describe('fibonacci', function() {
19
xit('doesn\'t accept negatives', function() {
20
expect(fibonacci(-25)).toEqual("OOPS");
21
});
22
+ xit('DOES accept strings', function() {
23
+ expect(fibonacci("1")).toEqual(1);
24
+ });
25
26
+ expect(fibonacci("2")).toEqual(1);
27
28
xit('DOES accept strings', function() {
29
expect(fibonacci("8")).toEqual(21);
30
0 commit comments