Skip to content

Commit 5663ec8

Browse files
committed
Update tests related to comma-separated values
Related to: <rehypejs/rehype#78> Related to: <rehypejs/rehype#79>
1 parent 64d3092 commit 5663ec8

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test/index.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -155,12 +155,11 @@ test('hast-util-to-dom', (t) => {
155155
'handles space-separated attributes correctly'
156156
)
157157

158-
const img = 'data:image/gif;base64,R0lGODlhAQABAAAAACwAAAAAAQABAAA='
159158
t.equal(
160159
serializeNodeToHtmlString(
161-
toDom(h('img', {srcSet: [`${img} 1x`, `${img} 2x`]}))
160+
toDom(h('input', {type: 'file', accept: ['image/*', '.doc']}))
162161
),
163-
`<img srcset="${img} 1x, ${img} 2x" />`,
162+
`<input type="file" accept="image/*, .doc" />`,
164163
'handles comma-separated attributes correctly'
165164
)
166165

0 commit comments

Comments
 (0)