diff --git a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/index.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/index.test.tsx index 16b6675536fcd..31d1198f77fe1 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/index.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/index.test.tsx @@ -69,8 +69,7 @@ describe('Timeline', () => { expect(screen.getByTestId(esqlTabSubj)).toBeVisible(); }); - // FLAKY: https://github.com/elastic/kibana/issues/194510 - describe.skip('no existing esql query is present', () => { + describe('no existing esql query is present', () => { it('should not show the esql tab when the advanced setting is disabled', async () => { useEsqlAvailabilityMock.mockReturnValue({ isEsqlAdvancedSettingEnabled: false, diff --git a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/query/header/index.test.tsx b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/query/header/index.test.tsx index 487329726ddda..7189c59c1b564 100644 --- a/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/query/header/index.test.tsx +++ b/x-pack/solutions/security/plugins/security_solution/public/timelines/components/timeline/tabs/query/header/index.test.tsx @@ -23,8 +23,7 @@ const mockUiSettingsForFilterManager = coreMock.createStart().uiSettings; jest.mock('../../../../../../common/lib/kibana'); -// FLAKY: https://github.com/elastic/kibana/issues/195830 -describe.skip('Header', () => { +describe('Header', () => { const indexPattern = mockIndexPattern; const mount = useMountAppended(); const getWrapper = async (childrenComponent: JSX.Element) => { diff --git a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unified_components/table_row_actions.cy.ts b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unified_components/table_row_actions.cy.ts index 4196b1e765e98..6942571374da5 100644 --- a/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unified_components/table_row_actions.cy.ts +++ b/x-pack/test/security_solution_cypress/cypress/e2e/investigations/timelines/unified_components/table_row_actions.cy.ts @@ -21,8 +21,7 @@ import { } from '../../../../tasks/timeline'; import { ALERTS_URL } from '../../../../urls/navigation'; -// FLAKY: https://github.com/elastic/kibana/issues/196851 -describe.skip( +describe( 'Unified Timeline table Row Actions', { tags: ['@ess', '@serverless', '@skipInServerlessMKI'],