From 104260b4f44e81e077320fd6b1646001058a6117 Mon Sep 17 00:00:00 2001 From: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> Date: Tue, 29 Aug 2023 15:11:26 -0400 Subject: [PATCH] skip failing test suite (#165146) --- .../transform/creation/index_pattern/continuous_transform.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/x-pack/test/functional/apps/transform/creation/index_pattern/continuous_transform.ts b/x-pack/test/functional/apps/transform/creation/index_pattern/continuous_transform.ts index 93b937e5ff7a4..d91e0e0ccb75b 100644 --- a/x-pack/test/functional/apps/transform/creation/index_pattern/continuous_transform.ts +++ b/x-pack/test/functional/apps/transform/creation/index_pattern/continuous_transform.ts @@ -24,7 +24,8 @@ export default function ({ getService, getPageObjects }: FtrProviderContext) { const security = getService('security'); const pageObjects = getPageObjects(['discover']); - describe('creation_continuous_transform', function () { + // Failing: See https://github.com/elastic/kibana/issues/165146 + describe.skip('creation_continuous_transform', function () { before(async () => { // installing the sample data with test user with super user role and then switching roles with limited privileges await security.testUser.setRoles(['superuser'], { skipBrowserRefresh: true });