mirror of
https://github.com/laurent22/joplin.git
synced 2024-11-27 08:21:03 +02:00
15 lines
363 B
JavaScript
15 lines
363 B
JavaScript
require(__dirname).test({
|
|
expect: [
|
|
['opentagstart', {'name': 'R', 'attributes': {}}],
|
|
['opentag', {'name': 'R', 'attributes': {}, 'isSelfClosing': false}],
|
|
['opencdata', undefined],
|
|
['cdata', ' this is '],
|
|
['closecdata', undefined],
|
|
['closetag', 'R']
|
|
]
|
|
})
|
|
.write('<r><![CDATA[ this is ]')
|
|
.write(']>')
|
|
.write('</r>')
|
|
.close()
|