Skip to content

Commit

Permalink
[ML] reduce timeout for charts assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
darnautov committed Mar 24, 2021
1 parent f1d0155 commit 26df6c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion x-pack/test/functional/services/ml/anomaly_explorer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ export function MachineLearningAnomalyExplorerProvider({ getService }: FtrProvid
async assertAnomalyExplorerChartsCount(expectedChartsCount: number) {
const chartsContainer = await testSubjects.find('mlExplorerChartsContainer');
const actualChartsCount = (
await chartsContainer.findAllByClassName('ml-explorer-chart-container')
await chartsContainer.findAllByClassName('ml-explorer-chart-container', 3000)
).length;
expect(actualChartsCount).to.eql(
expectedChartsCount,
Expand Down

0 comments on commit 26df6c4

Please sign in to comment.