mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
[TSVB] Fix FTR test (#182119)
## Summary Fixes #181940 Flaky runner succeeds after 100x runs: https://buildkite.com/elastic/kibana-flaky-test-suite-runner/builds/5833
This commit is contained in:
parent
312523e27a
commit
ef4c9097fc
1 changed files with 3 additions and 1 deletions
|
@ -157,7 +157,9 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
|
|||
await visualBuilder.clickPanelOptions('timeSeries');
|
||||
await visualBuilder.setBackgroundColor('#FFFFFF');
|
||||
|
||||
expect(await visualBuilder.checkTimeSeriesIsLight()).to.be(true);
|
||||
await retry.try(async () => {
|
||||
expect(await visualBuilder.checkTimeSeriesIsLight()).to.be(true);
|
||||
});
|
||||
});
|
||||
|
||||
after(async () => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue