mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-15 09:04:04 +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: {}
|
||
|
})
|