From ef9cc9367cc57fab77a79622398833eeb11a0903 Mon Sep 17 00:00:00 2001 From: Chris Roberson Date: Wed, 6 Jan 2021 11:56:49 -0500 Subject: [PATCH] Tweak timeout for failing cloud test (#86671) (#87491) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../test/functional/apps/monitoring/enable_monitoring/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/monitoring/enable_monitoring/index.js b/x-pack/test/functional/apps/monitoring/enable_monitoring/index.js index 70f7e0559d034..659de2db31e71 100644 --- a/x-pack/test/functional/apps/monitoring/enable_monitoring/index.js +++ b/x-pack/test/functional/apps/monitoring/enable_monitoring/index.js @@ -48,7 +48,7 @@ export default function ({ getService, getPageObjects }) { // Here we are checking that once Monitoring is enabled, // it moves on to the cluster overview page. - await retry.tryForTime(10000, async () => { + await retry.tryForTime(20000, async () => { // Click the refresh button await testSubjects.click('querySubmitButton'); expect(await clusterOverview.isOnClusterOverview()).to.be(true);