From 65384d466e1642dd9d397fc3b26713b9c3b3aa6e Mon Sep 17 00:00:00 2001 From: spalger Date: Sat, 25 Apr 2020 10:54:48 -0700 Subject: [PATCH] disable flaky suite (#64382) (#64381) (#64480) (cherry picked from commit 387c581e9b94d6cc3b6476413966ea7ba56038bc) --- src/core/public/application/integration_tests/router.test.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/core/public/application/integration_tests/router.test.tsx b/src/core/public/application/integration_tests/router.test.tsx index 2f26bc1409104..ceda06f55ec30 100644 --- a/src/core/public/application/integration_tests/router.test.tsx +++ b/src/core/public/application/integration_tests/router.test.tsx @@ -27,7 +27,8 @@ import { createRenderer, createAppMounter, createLegacyAppMounter, getUnmounter import { AppStatus } from '../types'; import { ScopedHistory } from '../scoped_history'; -describe('AppContainer', () => { +// FLAKY: https://github.com/elastic/kibana/issues/64382 +describe.skip('AppContainer', () => { let mounters: MockedMounterMap; let globalHistory: History; let appStatuses$: BehaviorSubject>;