You've already forked joplin
mirror of
https://github.com/laurent22/joplin.git
synced 2025-07-13 00:10:37 +02:00
All: Use Lerna to manage monorepo
This commit is contained in:
9
packages/fork-sax/test/trailing-attribute-no-value.js
Normal file
9
packages/fork-sax/test/trailing-attribute-no-value.js
Normal file
@ -0,0 +1,9 @@
|
||||
require(__dirname).test({
|
||||
xml: '<root attrib>',
|
||||
expect: [
|
||||
['opentagstart', {name: 'ROOT', attributes: {}}],
|
||||
['attribute', {name: 'ATTRIB', value: 'attrib'}],
|
||||
['opentag', {name: 'ROOT', attributes: {'ATTRIB': 'attrib'}, isSelfClosing: false}]
|
||||
],
|
||||
opt: { trim: true }
|
||||
})
|
Reference in New Issue
Block a user