mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-12 08:54:00 +02:00
15 lines
329 B
JavaScript
15 lines
329 B
JavaScript
|
var parser = require(__dirname).test({
|
||
|
expect: [
|
||
|
['opentagstart', {'name': 'T', attributes: {}}],
|
||
|
['opentag', {'name': 'T', attributes: {}, isSelfClosing: false}],
|
||
|
['text', 'flush'],
|
||
|
['text', 'rest'],
|
||
|
['closetag', 'T']
|
||
|
]
|
||
|
})
|
||
|
|
||
|
parser.write('<T>flush')
|
||
|
parser.flush()
|
||
|
parser.write('rest</T>')
|
||
|
parser.close()
|