File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,19 @@ describe('factorial', () => {
19
19
test . skip ( '0th factorial number is 1' , ( ) => {
20
20
expect ( factorial ( 0 ) ) . toBe ( 1 ) ;
21
21
} ) ;
22
- test . skip ( ' doesn\ 't accept negatives' , ( ) => {
22
+ test . skip ( " doesn't accept negatives" , ( ) => {
23
23
expect ( factorial ( - 25 ) ) . toBe ( undefined ) ;
24
24
} ) ;
25
- test . skip ( ' doesn\ 't accept floats' , ( ) => {
25
+ test . skip ( " doesn't accept floats" , ( ) => {
26
26
expect ( factorial ( 5.4 ) ) . toBe ( undefined ) ;
27
27
} ) ;
28
- test . skip ( ' doesn\ 't accept a number as a string' , ( ) => {
28
+ test . skip ( " doesn't accept a number as a string" , ( ) => {
29
29
expect ( factorial ( '5' ) ) . toBe ( undefined ) ;
30
30
} ) ;
31
- test . skip ( ' doesn\ 't accept strings' , ( ) => {
31
+ test . skip ( " doesn't accept strings" , ( ) => {
32
32
expect ( factorial ( 'foo' ) ) . toBe ( undefined ) ;
33
33
} ) ;
34
- test . skip ( ' doesn\ 't accept arrays' , ( ) => {
34
+ test . skip ( " doesn't accept arrays" , ( ) => {
35
35
expect ( factorial ( [ 5 ] ) ) . toBe ( undefined ) ;
36
36
} ) ;
37
37
} ) ;
You can’t perform that action at this time.
0 commit comments