mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
increase the default timeouts
This commit is contained in:
parent
25e7d2976e
commit
3e8307f8ac
5 changed files with 6 additions and 6 deletions
|
@ -9,7 +9,7 @@ define(function (require) {
|
|||
var common;
|
||||
var settingsPage;
|
||||
var remote;
|
||||
var longTimeout = 60000;
|
||||
var defaultTimeout = 90000;
|
||||
|
||||
bdd.before(function () {
|
||||
common = new Common(this.remote);
|
||||
|
@ -94,7 +94,7 @@ define(function (require) {
|
|||
});
|
||||
|
||||
bdd.it('makelogs data should have expected number of fields', function () {
|
||||
return common.tryForTime(longTimeout, function () {
|
||||
return common.tryForTime(defaultTimeout, function () {
|
||||
return settingsPage.getFieldsTabCount()
|
||||
.then(function (tabCount) {
|
||||
expect(tabCount).to.be('' + expectedFieldCount);
|
||||
|
|
|
@ -11,7 +11,7 @@ define(function (require) {
|
|||
this.remote = remote;
|
||||
}
|
||||
|
||||
var defaultTimeout = 60000;
|
||||
var defaultTimeout = 90000;
|
||||
|
||||
Common.prototype = {
|
||||
constructor: Common,
|
||||
|
|
|
@ -5,7 +5,7 @@ define(function (require) {
|
|||
// at runtime
|
||||
var Common = require('./Common');
|
||||
|
||||
var defaultTimeout = 60000;
|
||||
var defaultTimeout = 90000;
|
||||
var common;
|
||||
var thisTime;
|
||||
|
||||
|
|
|
@ -13,7 +13,7 @@ define(function (require) {
|
|||
common = new Common(this.remote);
|
||||
}
|
||||
|
||||
var defaultTimeout = 60000;
|
||||
var defaultTimeout = 90000;
|
||||
|
||||
HeaderPage.prototype = {
|
||||
constructor: HeaderPage,
|
||||
|
|
|
@ -7,7 +7,7 @@ define(function (require) {
|
|||
var Promise = require('bluebird');
|
||||
var Common = require('./Common');
|
||||
|
||||
var defaultTimeout = 60000;
|
||||
var defaultTimeout = 90000;
|
||||
var common;
|
||||
|
||||
function SettingsPage(remote) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue