1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-24 08:12:24 +02:00
joplin/packages/fork-sax/test/issue-30.js
2020-11-05 16:58:23 +00:00

24 lines
691 B
JavaScript

// https://github.com/isaacs/sax-js/issues/33
require(__dirname).test({
xml: '<xml>\n' +
'<!-- \n' +
' comment with a single dash- in it\n' +
'-->\n' +
'<data/>\n' +
'</xml>',
expect: [
[ 'opentagstart', { name: 'xml', attributes: {} } ],
[ 'opentag', { name: 'xml', attributes: {}, isSelfClosing: false } ],
[ 'text', '\n' ],
[ 'comment', ' \n comment with a single dash- in it\n' ],
[ 'text', '\n' ],
[ 'opentagstart', { name: 'data', attributes: {} } ],
[ 'opentag', { name: 'data', attributes: {}, isSelfClosing: true } ],
[ 'closetag', 'data' ],
[ 'text', '\n' ],
[ 'closetag', 'xml' ]
],
strict: true,
opt: {}
})