michael@0: function test() { michael@0: waitForExplicitFinish(); michael@0: function done() { michael@0: ok(true, "timeout ran"); michael@0: finish(); michael@0: } michael@0: michael@0: ok(OpenBrowserWindow(), "opened browser window"); michael@0: // and didn't close it! michael@0: michael@0: setTimeout(done, 10000); michael@0: }