mirror of https://github.com/laurent22/joplin.git
12 lines
368 B
JavaScript
12 lines
368 B
JavaScript
require(__dirname).test({
|
||
xml: '<r>⌋ ' +
|
||
'♠ © → & ' +
|
||
'< < < < < > ℜ ℘ €</r>',
|
||
expect: [
|
||
['opentagstart', {'name': 'R', attributes: {}}],
|
||
['opentag', {'name': 'R', attributes: {}, isSelfClosing: false}],
|
||
['text', '⌋ ♠ © → & < < < < < > ℜ ℘ €'],
|
||
['closetag', 'R']
|
||
]
|
||
})
|