1 2 3 4 5 6 7 8
function test() { waitForExplicitFinish(); function done() { ok(true, "timeout ran"); finish(); } setTimeout(done, 10000); }