comparison: testing/mochitest/tests/browser/browser_fail_timeout.js
testing/mochitest/tests/browser/browser_fail_timeout.js
- changeset 0
- 6474c204b198
equal
deleted
inserted
replaced
|
1 function test() { |
|
2 function end() { |
|
3 ok(false, "should have timed out"); |
|
4 finish(); |
|
5 } |
|
6 waitForExplicitFinish(); |
|
7 setTimeout(end, 40000); |
|
8 } |