UNPKG

439 BJavaScriptView Raw
1require(__dirname).test({
2 xml : "<html><head><script>if (1 < 0) { console.log('elo there'); }</script></head></html>",
3 expect : [
4 ["opentag", {"name": "HTML","attributes": {}}],
5 ["opentag", {"name": "HEAD","attributes": {}}],
6 ["opentag", {"name": "SCRIPT","attributes": {}}],
7 ["script", "if (1 < 0) { console.log('elo there'); }"],
8 ["closetag", "SCRIPT"],
9 ["closetag", "HEAD"],
10 ["closetag", "HTML"]
11 ]
12});