mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-17 09:53:07 +09:00
9 lines
174 B
JavaScript
9 lines
174 B
JavaScript
function test() {
|
|
requestLongerTimeout(2);
|
|
function end() {
|
|
ok(true, "should not time out");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 40000);
|
|
}
|