mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
12 lines
281 B
JavaScript
12 lines
281 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();
|
|
setTimeout(message, 20000);
|
|
setTimeout(end, 40000);
|
|
}
|