mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-03 08:35:29 +02:00
19 lines
383 B
JavaScript
19 lines
383 B
JavaScript
require(__dirname).test({
|
|
xml: '<span id="hello" id="there"></span>',
|
|
expect: [
|
|
[ 'opentagstart', {
|
|
name: 'SPAN',
|
|
attributes: {}
|
|
} ],
|
|
[ 'attribute', { name: 'ID', value: 'hello' } ],
|
|
[ 'opentag', {
|
|
name: 'SPAN',
|
|
attributes: { ID: 'hello' },
|
|
isSelfClosing: false
|
|
} ],
|
|
[ 'closetag', 'SPAN' ]
|
|
],
|
|
strict: false,
|
|
opt: {}
|
|
})
|