Skip to content

Commit 9745de0

Browse files
jquenseljharb
authored andcommitted
[New] Debug: debugNode now returns [function] for function children
1 parent 2c28e6c commit 9745de0

File tree

2 files changed

+34
-0
lines changed

2 files changed

+34
-0
lines changed

packages/enzyme-test-suite/test/Debug-spec.jsx

+30
Original file line numberDiff line numberDiff line change
@@ -748,5 +748,35 @@ describe('debug', () => {
748748
</Foo>`
749749
));
750750
});
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+
});
751781
});
752782
});

packages/enzyme/src/Debug.js

+4
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,10 @@ function indentChildren(childrenStrs, indentLength) {
6666

6767
export function debugNode(node, indentLength = 2, options = {}) {
6868
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+
}
6973
if (!node) return '';
7074

7175
const childrenStrs = compact(childrenOfNode(node).map(n => debugNode(n, indentLength, options)));

0 commit comments

Comments
 (0)