mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
27 lines
387 B
JavaScript
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: {}
|
|
})
|