Bug 1613549 - Reduce the timeout in browser_search_tips.js because the original delay has been removed. r=adw

Differential Revision: https://phabricator.services.mozilla.com/D63211

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Marco Bonardo 2020-02-19 00:48:14 +00:00
Родитель f5a5881ed0
Коммит fce02fabba
1 изменённых файлов: 1 добавлений и 2 удалений

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

@ -19,7 +19,6 @@ XPCOMUtils.defineLazyModuleGetters(this, {
});
// These should match the same consts in UrlbarProviderSearchTips.jsm.
const SHOW_TIP_DELAY_MS = 200;
const MAX_SHOWN_COUNT = 4;
const LAST_UPDATE_THRESHOLD_MS = 24 * 60 * 60 * 1000;
const TIPS = {
@ -669,7 +668,7 @@ async function checkTip(win, expectedTip, closeView = true) {
if (!expectedTip) {
// Wait a bit for the tip to not show up.
// eslint-disable-next-line mozilla/no-arbitrary-setTimeout
await new Promise(resolve => setTimeout(resolve, 3 * SHOW_TIP_DELAY_MS));
await new Promise(resolve => setTimeout(resolve, 100));
Assert.ok(!win.gURLBar.view.isOpen);
return;
}