scala-js-env-selenium
scala-js-env-selenium copied to clipboard
Error fails to terminate com receive loop
Consider:
var x = true
window.setInterval(1000, function() {
if (x) {
x = false;
throw "foo";
}
scalaJSCom.send("hello");
}
The message(s) "hello" should not be sent.