mirror of
https://github.com/ManchildProductions/UXP-Fixed.git
synced 2026-06-12 03:20:55 +00:00
10 lines
174 B
JavaScript
10 lines
174 B
JavaScript
function test() {
|
|
requestLongerTimeout(2);
|
|
function end() {
|
|
ok(true, "should not time out");
|
|
finish();
|
|
}
|
|
waitForExplicitFinish();
|
|
setTimeout(end, 40000);
|
|
}
|