Bug 1842773 - Part 5: Add ArrayBuffer.prototype.{maxByteLength,resizable} getters...
[gecko.git] / testing / mochitest / tests / browser / browser_async.js
blobd07cb21740c37be1d2770fe45ceca067287fb5f3
1 function test() {
2   waitForExplicitFinish();
3   function done() {
4     ok(true, "timeout ran");
5     finish();
6   }
7   // eslint-disable-next-line mozilla/no-arbitrary-setTimeout
8   setTimeout(done, 500);