1
0
mirror of https://github.com/laurent22/joplin.git synced 2024-12-12 08:54:00 +02:00
joplin/packages/fork-sax/test/flush.js

15 lines
329 B
JavaScript
Raw Normal View History

2020-11-05 18:58:23 +02:00
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()