From 8d7566b2262e0dfc594a506979f728f07245417e Mon Sep 17 00:00:00 2001 From: Tiago Costa Date: Mon, 14 Mar 2022 13:40:59 +0000 Subject: [PATCH] skip flaky suite (#111381) --- .../reporting_and_security/network_policy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/reporting_api_integration/reporting_and_security/network_policy.ts b/x-pack/test/reporting_api_integration/reporting_and_security/network_policy.ts index 212b3f6de97c4..0bc164227fe14 100644 --- a/x-pack/test/reporting_api_integration/reporting_and_security/network_policy.ts +++ b/x-pack/test/reporting_api_integration/reporting_and_security/network_policy.ts @@ -18,7 +18,8 @@ export default function ({ getService }: FtrProviderContext) { * The Reporting API Functional Test config implements a network policy that * is designed to disallow the following Canvas worksheet */ - describe('Network Policy', () => { + // FLAKY: https://github.com/elastic/kibana/issues/111381 + describe.skip('Network Policy', () => { before(async () => { await reportingAPI.initLogs(); // includes a canvas worksheet with an offending image URL });