From 004e3b32b2d20088348068b553ce1883f177c680 Mon Sep 17 00:00:00 2001 From: Dzmitry Lemechko Date: Mon, 15 Jul 2019 18:28:42 +0200 Subject: [PATCH] skip flaky test (#41112) --- x-pack/test/functional/apps/code/explore_repository.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/code/explore_repository.ts b/x-pack/test/functional/apps/code/explore_repository.ts index 4989097760e4f..105b8deef4c55 100644 --- a/x-pack/test/functional/apps/code/explore_repository.ts +++ b/x-pack/test/functional/apps/code/explore_repository.ts @@ -217,7 +217,8 @@ export default function exploreRepositoryFunctionalTests({ }); }); - it('click a breadcrumb should not affect the file tree', async () => { + // FLAKY https://github.com/elastic/kibana/issues/41112 + it.skip('click a breadcrumb should not affect the file tree', async () => { log.debug('it goes to a deep node of file tree'); const url = `${PageObjects.common.getHostPort()}/app/code#/github.com/elastic/TypeScript-Node-Starter/blob/master/src/models/User.ts`; await browser.get(url);