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 52a42f1 commit 9981c66Copy full SHA for 9981c66
test/render.test.js
@@ -116,7 +116,7 @@ describe('render', () => {
116
117
it('should serialize defaultChecked prop to the checked attribute', () => {
118
let rendered = render(<input type="checkbox" defaultChecked />),
119
- expected = `<input type="checkbox" checked />`;
+ expected = `<input type="checkbox" checked/>`;
120
121
expect(rendered).to.equal(expected);
122
});
@@ -240,7 +240,7 @@ describe('render', () => {
240
<wbr />
241
</div>
242
),
243
- expected = `<div><input type="text" /><wbr /></div>`;
+ expected = `<div><input type="text"/><wbr/></div>`;
244
245
246
0 commit comments