tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

browser_fail_timeout.js (212B)


      1 function test() {
      2  function end() {
      3    ok(false, "should have timed out");
      4    finish();
      5  }
      6  waitForExplicitFinish();
      7  // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
      8  setTimeout(end, 40000);
      9 }