From 9fac0d46f15d6385070f5496e940b6aa4c6963cc Mon Sep 17 00:00:00 2001 From: Christos Nasikas Date: Wed, 14 Dec 2022 00:07:21 +0200 Subject: [PATCH] [Connectors] Unskip a test for the es index connector (#147311) ## Summary This PR unskips a test that was skipped during the [Jest upgrade](https://github.com/elastic/kibana/pull/143319) to version 29. Fixes https://github.com/elastic/kibana/issues/145751 ### Checklist Delete any items that are not applicable to this PR. - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios ### For maintainers - [x] This was checked for breaking API changes and was [labeled appropriately](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) Co-authored-by: Kibana Machine <42973632+kibanamachine@users.noreply.github.com> --- .../connector_types/stack/es_index/es_index_connector.test.tsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/x-pack/plugins/stack_connectors/public/connector_types/stack/es_index/es_index_connector.test.tsx b/x-pack/plugins/stack_connectors/public/connector_types/stack/es_index/es_index_connector.test.tsx index 6e0236fcc3e89..bf6484b52d38d 100644 --- a/x-pack/plugins/stack_connectors/public/connector_types/stack/es_index/es_index_connector.test.tsx +++ b/x-pack/plugins/stack_connectors/public/connector_types/stack/es_index/es_index_connector.test.tsx @@ -338,8 +338,7 @@ describe('IndexActionConnectorFields', () => { expect(screen.getByText('indexPattern2')).toBeInTheDocument(); }); - // Broken during Jest 29 upgrade - describe.skip('Validation', () => { + describe('Validation', () => { let appMockRenderer: AppMockRenderer; const onSubmit = jest.fn();