Bug 1293078 - Increase wait time in test_formless_submit_navigation_negative.html. r=MattN

--HG--
extra : rebase_source : d31a10abd42ed0ff3332c66a586b50e4582ca080
This commit is contained in:
Geoff Brown 2016-11-18 15:52:00 -05:00
Родитель 08f3aaaca6
Коммит 7967261bec
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -102,8 +102,8 @@ add_task(function* test() {
info("Running " + scriptName + " script to check for a submission");
frameDoc.defaultView.eval(SCRIPTS[scriptName]);
// Wait for 500ms to see if the promise above resolves.
yield new Promise(resolve => setTimeout(resolve, 500));
// Wait for 5000ms to see if the promise above resolves.
yield new Promise(resolve => setTimeout(resolve, 5000));
ok(true, "Done waiting for captures");
}
}