mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Remove a console.log from scenarioManager. Add 1s delay before setting saved query name so we don't end up with concatenated name.
This commit is contained in:
parent
c4b60c9c88
commit
5d36e8749e
2 changed files with 3 additions and 1 deletions
1
test/fixtures/scenarioManager.js
vendored
1
test/fixtures/scenarioManager.js
vendored
|
@ -62,7 +62,6 @@ ScenarioManager.prototype.unload = function (id) {
|
|||
return bulk.indexName;
|
||||
});
|
||||
|
||||
console.log('DELETING INDEX: ' + indices);
|
||||
return this.client.indices.delete({
|
||||
index: indices
|
||||
})
|
||||
|
|
|
@ -35,6 +35,9 @@ define(function (require) {
|
|||
saveSearch: function saveSearch(searchName) {
|
||||
var self = this;
|
||||
return self.clickSaveSearchButton()
|
||||
.then(function () {
|
||||
common.sleep(1000);
|
||||
})
|
||||
.then(function () {
|
||||
common.debug('--saveSearch button clicked');
|
||||
return thisTime.findById('SaveSearch')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue