mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-18 09:35:20 +02:00
45 lines
763 B
JavaScript
45 lines
763 B
JavaScript
|
require(__dirname).test({
|
||
|
xml: "<root length='12345'></root>",
|
||
|
expect: [
|
||
|
[ 'opentagstart', { name: 'root', attributes: {}, ns: {} } ],
|
||
|
[
|
||
|
'attribute',
|
||
|
{
|
||
|
name: 'length',
|
||
|
value: '12345',
|
||
|
prefix: '',
|
||
|
local: 'length',
|
||
|
uri: ''
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
'opentag',
|
||
|
{
|
||
|
name: 'root',
|
||
|
prefix: '',
|
||
|
local: 'root',
|
||
|
uri: '',
|
||
|
attributes: {
|
||
|
length: {
|
||
|
name: 'length',
|
||
|
value: '12345',
|
||
|
prefix: '',
|
||
|
local: 'length',
|
||
|
uri: ''
|
||
|
}
|
||
|
},
|
||
|
ns: {},
|
||
|
isSelfClosing: false
|
||
|
}
|
||
|
],
|
||
|
[
|
||
|
'closetag',
|
||
|
'root'
|
||
|
]
|
||
|
],
|
||
|
strict: true,
|
||
|
opt: {
|
||
|
xmlns: true
|
||
|
}
|
||
|
})
|