File tree 2 files changed +34
-0
lines changed
2 files changed +34
-0
lines changed Original file line number Diff line number Diff line change @@ -748,5 +748,35 @@ describe('debug', () => {
748
748
</Foo>`
749
749
) ) ;
750
750
} ) ;
751
+
752
+ it ( 'handles function children' , ( ) => {
753
+ class Abomination extends React . Component {
754
+ render ( ) {
755
+ /* eslint no-unused-vars: 0, func-names: 0 */
756
+ return (
757
+ < div >
758
+ { function Foo ( ) { /* hi */ } }
759
+ { < span /> }
760
+ { arrow => arrow ( 'function' ) }
761
+ { [ 1 , 2 , NaN ] }
762
+ { function ( anonymous ) { } }
763
+ </ div >
764
+ ) ;
765
+ }
766
+ }
767
+
768
+ const wrapper = shallow ( < Abomination /> ) ;
769
+ expect ( wrapper . debug ( ) ) . to . equal ( (
770
+ `<div>
771
+ [function Foo]
772
+ <span />
773
+ [function]
774
+ 1
775
+ 2
776
+ NaN
777
+ [function]
778
+ </div>`
779
+ ) ) ;
780
+ } ) ;
751
781
} ) ;
752
782
} ) ;
Original file line number Diff line number Diff line change @@ -66,6 +66,10 @@ function indentChildren(childrenStrs, indentLength) {
66
66
67
67
export function debugNode ( node , indentLength = 2 , options = { } ) {
68
68
if ( typeof node === 'string' || typeof node === 'number' ) return escape ( node ) ;
69
+ if ( typeof node === 'function' ) {
70
+ const name = functionName ( node ) ;
71
+ return `[function${ name ? ` ${ name } ` : '' } ]` ;
72
+ }
69
73
if ( ! node ) return '' ;
70
74
71
75
const childrenStrs = compact ( childrenOfNode ( node ) . map ( n => debugNode ( n , indentLength , options ) ) ) ;
You can’t perform that action at this time.
0 commit comments