mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
13 lines
336 B
JavaScript
13 lines
336 B
JavaScript
// https://github.com/isaacs/sax-js/issues/35
|
|
require(__dirname).test({
|
|
xml: '<xml>

\n</xml>',
|
|
expect: [
|
|
[ 'opentagstart', { name: 'xml', attributes: {} } ],
|
|
[ 'opentag', { name: 'xml', attributes: {}, isSelfClosing: false } ],
|
|
[ 'text', '\r\r\n' ],
|
|
[ 'closetag', 'xml' ]
|
|
],
|
|
strict: true,
|
|
opt: {}
|
|
})
|