core(driver): increase default timeout to 45s (#3741)

This commit is contained in:
Patrick Hulce 2017-11-07 11:15:36 -08:00 коммит произвёл Brendan Kenny
Родитель 45d8537140
Коммит 8a1af52581
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -26,7 +26,7 @@ const _uniq = arr => Array.from(new Set(arr));
class Driver {
static get MAX_WAIT_FOR_FULLY_LOADED() {
return 30 * 1000;
return 45 * 1000;
}
/**