Bug 1842773 - Part 5: Add ArrayBuffer.prototype.{maxByteLength,resizable} getters...
[gecko.git] / testing / mochitest / tests / browser / browser_fail_timeout.js
blob44030a00f0260348385973f8e334c6e97bb7577f
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);