mirror of
https://github.com/laurent22/joplin.git
synced 2024-12-09 08:45:55 +02:00
13 lines
217 B
JavaScript
13 lines
217 B
JavaScript
// https://github.com/isaacs/sax-js/issues/124
|
|
require(__dirname).test({
|
|
xml: '<!-- stand alone comment -->',
|
|
expect: [
|
|
[
|
|
'comment',
|
|
' stand alone comment '
|
|
]
|
|
],
|
|
strict: true,
|
|
opt: {}
|
|
})
|