1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-03 08:35:29 +02:00
joplin/packages/fork-sax/test/trailing-non-whitespace.js

22 lines
407 B
JavaScript
Raw Normal View History

2020-11-05 18:58:23 +02:00
require(__dirname).test({
xml: '<span>Welcome,</span> to monkey land',
expect: [
['opentagstart', {
'name': 'SPAN',
'attributes': {}
}],
['opentag', {
'name': 'SPAN',
'attributes': {},
isSelfClosing: false
}],
['text', 'Welcome,'],
['closetag', 'SPAN'],
['text', ' to monkey land'],
['end'],
['ready']
],
strict: false,
opt: {}
})