Skip to content

Commit ab1e728

Browse files
committed
feat/ single quotes replaced with double quotes
1 parent 3bc0482 commit ab1e728

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

13_factorial/factorial.spec.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,19 @@ describe('factorial', () => {
1919
test.skip('0th factorial number is 1', () => {
2020
expect(factorial(0)).toBe(1);
2121
});
22-
test.skip('doesn\'t accept negatives', () => {
22+
test.skip("doesn't accept negatives", () => {
2323
expect(factorial(-25)).toBe(undefined);
2424
});
25-
test.skip('doesn\'t accept floats', () => {
25+
test.skip("doesn't accept floats", () => {
2626
expect(factorial(5.4)).toBe(undefined);
2727
});
28-
test.skip('doesn\'t accept a number as a string', () => {
28+
test.skip("doesn't accept a number as a string", () => {
2929
expect(factorial('5')).toBe(undefined);
3030
});
31-
test.skip('doesn\'t accept strings', () => {
31+
test.skip("doesn't accept strings", () => {
3232
expect(factorial('foo')).toBe(undefined);
3333
});
34-
test.skip('doesn\'t accept arrays', () => {
34+
test.skip("doesn't accept arrays", () => {
3535
expect(factorial([5])).toBe(undefined);
3636
});
3737
});

0 commit comments

Comments
 (0)