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

14 lines
467 B
JavaScript

// https://github.com/isaacs/sax-js/issues/49
require(__dirname).test({
xml: '<?has unbalanced "quotes?><xml>body</xml>',
expect: [
[ 'processinginstruction', { name: 'has', body: 'unbalanced "quotes' } ],
[ 'opentagstart', { name: 'xml', attributes: {} } ],
[ 'opentag', { name: 'xml', attributes: {}, isSelfClosing: false } ],
[ 'text', 'body' ],
[ 'closetag', 'xml' ]
],
strict: false,
opt: { lowercasetags: true, noscript: true }
})