9 lines
192 B
JavaScript
9 lines
192 B
JavaScript
|
require(__dirname).test({
|
|||
|
xml: '<Р>тест</Р>',
|
|||
|
expect: [
|
|||
|
['opentag', {'name':'Р', attributes:{}, isSelfClosing: false}],
|
|||
|
['text', 'тест'],
|
|||
|
['closetag', 'Р']
|
|||
|
]
|
|||
|
});
|