gerald-react-scripts-fork
Version:
Gerald's fork of the configuration and scripts for Create React App.
25 lines (24 loc) • 679 B
JavaScript
require(__dirname).test({
xml :
"<root> "+
"<haha /> "+
"<haha/> "+
"<monkey> "+
"=(|) "+
"</monkey>"+
"</root> ",
expect : [
["opentag", {name:"ROOT", attributes:{}, isSelfClosing: false}],
["opentag", {name:"HAHA", attributes:{}, isSelfClosing: true}],
["closetag", "HAHA"],
["opentag", {name:"HAHA", attributes:{}, isSelfClosing: true}],
["closetag", "HAHA"],
// ["opentag", {name:"HAHA", attributes:{}}],
// ["closetag", "HAHA"],
["opentag", {name:"MONKEY", attributes:{}, isSelfClosing: false}],
["text", "=(|)"],
["closetag", "MONKEY"],
["closetag", "ROOT"]
],
opt : { trim : true }
});