From edcce0ced0add9cb9cd067ba1c8db97f4778f810 Mon Sep 17 00:00:00 2001 From: spalger Date: Wed, 31 Jul 2019 16:48:43 -0700 Subject: [PATCH] skip flaky test (#42098) (cherry picked from commit 02eeff5984fa68b84b080c98421dc4eb3983f68b) --- .../test_suites/task_manager/task_manager_integration.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/plugin_api_integration/test_suites/task_manager/task_manager_integration.js b/x-pack/test/plugin_api_integration/test_suites/task_manager/task_manager_integration.js index 06beb5aa08fc1..bf8bd48bb3fea 100644 --- a/x-pack/test/plugin_api_integration/test_suites/task_manager/task_manager_integration.js +++ b/x-pack/test/plugin_api_integration/test_suites/task_manager/task_manager_integration.js @@ -16,7 +16,8 @@ export default function ({ getService }) { const testHistoryIndex = '.task_manager_test_result'; const supertest = supertestAsPromised(url.format(config.get('servers.kibana'))); - describe('scheduling and running tasks', () => { + // FLAKY: https://github.com/elastic/kibana/issues/42098 + describe.skip('scheduling and running tasks', () => { beforeEach(() => supertest.delete('/api/sample_tasks') .set('kbn-xsrf', 'xxx') .expect(200));