joplin/packages/fork-sax/test/unclosed-root.js

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: {}
})