michael@0: function test() { michael@0: function message() { michael@0: info("This should delay timeout"); michael@0: } michael@0: function end() { michael@0: ok(true, "Should have not timed out, but notified long running test"); michael@0: finish(); michael@0: } michael@0: waitForExplicitFinish(); michael@0: setTimeout(message, 20000); michael@0: setTimeout(end, 40000); michael@0: }