diff --git a/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/configure.cy.ts b/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/configure.cy.ts index d427f65fe5b8ec..3a4ceba04f7063 100644 --- a/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/configure.cy.ts +++ b/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/custom_logs/configure.cy.ts @@ -5,8 +5,7 @@ * 2.0. */ -// Failing: See https://github.com/elastic/kibana/issues/186215 -describe.skip('[Logs onboarding] Custom logs - configure step', () => { +describe('[Logs onboarding] Custom logs - configure step', () => { describe('logFilePaths', () => { beforeEach(() => { cy.loginAsViewerUser(); diff --git a/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts b/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts index bd0af6f595b348..5e20bf534b94f9 100644 --- a/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts +++ b/x-pack/plugins/observability_solution/observability_onboarding/e2e/cypress/e2e/logs/system_logs.cy.ts @@ -542,9 +542,7 @@ describe('[Logs onboarding] System logs', () => { }); }); - // Skpping this test because it's failing in the CI - // https://github.com/elastic/kibana/issues/176995 - xdescribe('when integration installation succeed', () => { + describe('when integration installation succeed', () => { beforeEach(() => { cy.deleteIntegration('system'); cy.intercept('GET', '/api/fleet/epm/packages/system').as('systemIntegrationInstall'); @@ -557,7 +555,7 @@ describe('[Logs onboarding] System logs', () => { cy.getByTestSubj('obltOnboardingExploreLogs').should('exist').click(); cy.url().should('include', '/app/observability-logs-explorer'); - cy.get('button').contains('[System] syslog').should('exist'); + cy.get('button').contains('[system] system.syslog').should('exist'); }); }); });