Fix evalScripts() #186

Merged
BehindTheMath merged 2 commits from fix/eval-script into master 2018-11-25 15:21:08 -05:00
Showing only changes of commit 723b37c125 - Show all commits

View File

@@ -22,7 +22,7 @@ tape("test evalScript method", function(t) {
t.end()
})
tape.only("evalScript should not throw an error if the script removed itself", function(t) {
tape("evalScript should not throw an error if the script removed itself", function(t) {
var script = document.createElement("script")
script.id = "myScript";
script.innerHTML = "const script = document.querySelector('#myScript');" +