From 552e6369e5028923ae7648da5157bfd2ed11a727 Mon Sep 17 00:00:00 2001 From: Dima Arnautov Date: Tue, 27 Jun 2023 17:20:25 +0200 Subject: [PATCH 1/3] enable transform a11y tests --- x-pack/test/accessibility/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/x-pack/test/accessibility/config.ts b/x-pack/test/accessibility/config.ts index 140d6fe6de108..ed6fabe0acfc1 100644 --- a/x-pack/test/accessibility/config.ts +++ b/x-pack/test/accessibility/config.ts @@ -36,7 +36,7 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) { // https://github.com/elastic/kibana/issues/153596 // https://github.com/elastic/kibana/issues/153592 // require.resolve('./apps/ml'), - // require.resolve('./apps/transform'), + require.resolve('./apps/transform'), require.resolve('./apps/lens'), require.resolve('./apps/upgrade_assistant'), require.resolve('./apps/canvas'), From 5493ef0dd55c4cf255cfdf6e25b8c1aef690c062 Mon Sep 17 00:00:00 2001 From: Dima Arnautov Date: Wed, 28 Jun 2023 10:07:31 +0200 Subject: [PATCH 2/3] remove comments --- x-pack/test/accessibility/config.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/x-pack/test/accessibility/config.ts b/x-pack/test/accessibility/config.ts index 1c9abce93c5ec..dd059ff56e3b7 100644 --- a/x-pack/test/accessibility/config.ts +++ b/x-pack/test/accessibility/config.ts @@ -33,8 +33,6 @@ export default async function ({ readConfigFile }: FtrConfigProviderContext) { require.resolve('./apps/roles'), require.resolve('./apps/ingest_node_pipelines'), require.resolve('./apps/index_lifecycle_management'), - // https://github.com/elastic/kibana/issues/153596 - // https://github.com/elastic/kibana/issues/153592 require.resolve('./apps/ml'), require.resolve('./apps/transform'), require.resolve('./apps/lens'), From 46dffb1e8088a56b80b355f6fd2424b2961b093e Mon Sep 17 00:00:00 2001 From: Dima Arnautov Date: Mon, 17 Jul 2023 15:39:54 +0400 Subject: [PATCH 3/3] skip json editor test --- x-pack/test/accessibility/apps/transform.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/x-pack/test/accessibility/apps/transform.ts b/x-pack/test/accessibility/apps/transform.ts index 417ab317218de..9d52571956816 100644 --- a/x-pack/test/accessibility/apps/transform.ts +++ b/x-pack/test/accessibility/apps/transform.ts @@ -11,7 +11,7 @@ export default function ({ getService }: FtrProviderContext) { const a11y = getService('a11y'); const transform = getService('transform'); - describe('transform Accessibility', () => { + describe('transform Accessibility', function () { const esArchiver = getService('esArchiver'); before(async () => { @@ -147,7 +147,7 @@ export default function ({ getService }: FtrProviderContext) { await a11y.testAppSnapshot(); }); - it('create pivot transform configuration step JSON editor', async () => { + it.skip('create pivot transform configuration step JSON editor', async () => { await transform.testExecution.logTestStep('displays the JSON pivot configuration'); await transform.wizard.assertAdvancedPivotEditorSwitchExists(); await transform.wizard.enableAdvancedPivotEditor();