From 462bf1520fc00f5adb75a3541331646e47e7ead2 Mon Sep 17 00:00:00 2001 From: Brian Seeders Date: Mon, 29 Jun 2020 11:48:39 -0400 Subject: [PATCH] skip flaky suite (#69617) --- x-pack/test/functional/apps/maps/layer_errors.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/maps/layer_errors.js b/x-pack/test/functional/apps/maps/layer_errors.js index dee5c5b403e4..83b533a55994 100644 --- a/x-pack/test/functional/apps/maps/layer_errors.js +++ b/x-pack/test/functional/apps/maps/layer_errors.js @@ -9,7 +9,8 @@ import expect from '@kbn/expect'; export default function ({ getPageObjects }) { const PageObjects = getPageObjects(['maps', 'header']); - describe('layer errors', () => { + // Failing: See https://github.com/elastic/kibana/issues/69617 + describe.skip('layer errors', () => { before(async () => { await PageObjects.maps.loadSavedMap('layer with errors'); });