From 450d297ddf6a2b779019b369636b2c067a75f2ea Mon Sep 17 00:00:00 2001
From: Chris Roberson <chrisronline@gmail.com>
Date: Wed, 6 Jan 2021 09:13:57 -0500
Subject: [PATCH] Tweak timeout for failing cloud test (#86671)

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);