1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-11-27 08:21:03 +02:00
joplin/packages/fork-sax/test/unclosed-root.js
2020-11-05 16:58:23 +00:00

27 lines
387 B
JavaScript

require(__dirname).test({
xml: '<root>',
expect: [
[
'opentagstart',
{
name: 'root',
attributes: {}
}
],
[
'opentag',
{
name: 'root',
attributes: {},
isSelfClosing: false
}
],
[
'error',
'Unclosed root tag\nLine: 0\nColumn: 6\nChar: '
]
],
strict: true,
opt: {}
})