Fixes flakiness in timelion viz functional test (#112805) (#112834)

* Fixes flakiness in timelion viz functional test

* Add sleep

Co-authored-by: Stratoula Kalafateli <efstratia.kalafateli@elastic.co>
This commit is contained in:
Kibana Machine 2021-09-22 12:49:57 -04:00 committed by GitHub
parent bd2ef02547
commit 4516fc5e26
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -277,17 +277,20 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
it('should show field suggestions for split argument when index pattern set', async () => {
await monacoEditor.setCodeEditorValue('');
await monacoEditor.typeCodeEditorValue(
'.es(index=logstash-*, timefield=@timestamp ,split=',
'.es(index=logstash-*, timefield=@timestamp, split=',
'timelionCodeEditor'
);
// wait for split fields to load
await common.sleep(300);
const suggestions = await timelion.getSuggestionItemsText();
expect(suggestions.length).not.to.eql(0);
expect(suggestions[0].includes('@message.raw')).to.eql(true);
});
it('should show field suggestions for metric argument when index pattern set', async () => {
await monacoEditor.typeCodeEditorValue(
'.es(index=logstash-*, timefield=@timestamp ,metric=avg:',
'.es(index=logstash-*, timefield=@timestamp, metric=avg:',
'timelionCodeEditor'
);
const suggestions = await timelion.getSuggestionItemsText();