Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
1 function test() {
2 waitForExplicitFinish();
3 function done() {
4 ok(true, "timeout ran");
5 finish();
6 }
7
8 ok(OpenBrowserWindow(), "opened browser window");
9 // and didn't close it!
10
11 setTimeout(done, 10000);
12 }