We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 76d2826 commit 1616453Copy full SHA for 1616453
test/jsx.js
@@ -131,14 +131,16 @@ describe('jsx', () => {
131
<a />
132
<b>{null}</b>
133
<c><Empty /></c>
134
- <d><False /></d>
+ <d>{false}</d>
135
+ <e><False /></e>
136
</div>
137
)).to.equal(dedent`
138
<div>
139
<a></a>
140
<b></b>
141
<c></c>
142
<d></d>
143
+ <e></e>
144
145
`);
146
});
0 commit comments