From c08aace12f182fce6620ca1544355805eee371c8 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Fri, 20 Sep 2024 05:02:30 +1000 Subject: [PATCH] skip failing test suite (#193433) --- .../reporting_and_security/screenshot/network_policy.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/reporting_api_integration/reporting_and_security/screenshot/network_policy.ts b/x-pack/test/reporting_api_integration/reporting_and_security/screenshot/network_policy.ts index ac61ef5ca9cb3..f608c8b7f250a 100644 --- a/x-pack/test/reporting_api_integration/reporting_and_security/screenshot/network_policy.ts +++ b/x-pack/test/reporting_api_integration/reporting_and_security/screenshot/network_policy.ts @@ -17,7 +17,8 @@ export default function ({ getService }: FtrProviderContext) { /* * The tests server config implements a network policy that is designed to disallow the following Canvas worksheet */ - describe('Network Policy', () => { + // Failing: See https://github.com/elastic/kibana/issues/193433 + describe.skip('Network Policy', () => { before(async () => { await reportingAPI.initLogs(); // includes a canvas worksheet with an offending image URL });