forked from mirrors/gecko-dev
MozReview-Commit-ID: BoGnB1aQxm8 --HG-- extra : rebase_source : 3014c44fb75c24616da5ca35b4e0addaf9982d9e
14 lines
405 B
JavaScript
14 lines
405 B
JavaScript
function test() {
|
|
function message() {
|
|
info("This should delay timeout");
|
|
}
|
|
function end() {
|
|
ok(true, "Should have not timed out, but notified long running test");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
|
|
setTimeout(message, 20000);
|
|
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
|
|
setTimeout(end, 40000);
|
|
}
|