We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 64d3092 commit 5663ec8Copy full SHA for 5663ec8
test/index.js
@@ -155,12 +155,11 @@ test('hast-util-to-dom', (t) => {
155
'handles space-separated attributes correctly'
156
)
157
158
- const img = 'data:image/gif;base64,R0lGODlhAQABAAAAACwAAAAAAQABAAA='
159
t.equal(
160
serializeNodeToHtmlString(
161
- toDom(h('img', {srcSet: [`${img} 1x`, `${img} 2x`]}))
+ toDom(h('input', {type: 'file', accept: ['image/*', '.doc']}))
162
),
163
- `<img srcset="${img} 1x, ${img} 2x" />`,
+ `<input type="file" accept="image/*, .doc" />`,
164
'handles comma-separated attributes correctly'
165
166
0 commit comments