1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-09 08:45:55 +02:00
joplin/packages/fork-sax/test/stand-alone-comment.js
2020-11-05 16:58:23 +00:00

13 lines
217 B
JavaScript

// https://github.com/isaacs/sax-js/issues/124
require(__dirname).test({
xml: '<!-- stand alone comment -->',
expect: [
[
'comment',
' stand alone comment '
]
],
strict: true,
opt: {}
})