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', () => {
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} ) ;
You can’t perform that action at this time.
0 commit comments