trailing-non-whitespace.js 334 B

123456789101112131415161718
  1. require(__dirname).test({
  2. xml : "<span>Welcome,</span> to monkey land",
  3. expect : [
  4. ["opentag", {
  5. "name": "SPAN",
  6. "attributes": {},
  7. isSelfClosing: false
  8. }],
  9. ["text", "Welcome,"],
  10. ["closetag", "SPAN"],
  11. ["text", " to monkey land"],
  12. ["end"],
  13. ["ready"]
  14. ],
  15. strict : false,
  16. opt : {}
  17. });