mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
bump index pattern creation timeouts
This commit is contained in:
parent
b8951da9a0
commit
8c0c38b66a
2 changed files with 5 additions and 5 deletions
|
@ -48,7 +48,7 @@ define(function (require) {
|
|||
return settingsPage.removeIndexPattern();
|
||||
});
|
||||
|
||||
bdd.it('should sort ascending, then descending', function pageHeader() {
|
||||
bdd.it('should sort ascending', function pageHeader() {
|
||||
return settingsPage.sortBy(col.heading)
|
||||
.then(function getText() {
|
||||
return col.selector();
|
||||
|
|
|
@ -6,7 +6,7 @@ define(function (require) {
|
|||
|
||||
var Common = require('./Common');
|
||||
|
||||
var defaultTimeout = 5000;
|
||||
var defaultTimeout = 6000;
|
||||
var common;
|
||||
|
||||
function SettingsPage(remote) {
|
||||
|
@ -238,7 +238,7 @@ define(function (require) {
|
|||
return self.getCreateButton().click();
|
||||
})
|
||||
.then(function () {
|
||||
return common.tryForTime(3000, function () {
|
||||
return common.tryForTime(defaultTimeout, function () {
|
||||
return self.remote.getCurrentUrl()
|
||||
.then(function (currentUrl) {
|
||||
if (!currentUrl.match(/indices\/.+\?/)) {
|
||||
|
@ -255,7 +255,7 @@ define(function (require) {
|
|||
|
||||
return self.clickDeletePattern()
|
||||
.then(function () {
|
||||
return common.tryForTime(3000, function () {
|
||||
return common.tryForTime(defaultTimeout, function () {
|
||||
return self.remote.getAlertText()
|
||||
.then(function (text) {
|
||||
alertText = text;
|
||||
|
@ -266,7 +266,7 @@ define(function (require) {
|
|||
return self.remote.acceptAlert();
|
||||
})
|
||||
.then(function () {
|
||||
common.tryForTime(3000, function () {
|
||||
common.tryForTime(defaultTimeout, function () {
|
||||
return self.remote.getCurrentUrl()
|
||||
.then(function (currentUrl) {
|
||||
if (currentUrl.match(/indices\/.+\?/)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue