Skip to content

Commit

Permalink
[Onboarding] Fix failing Cypress tests (elastic#192577)
Browse files Browse the repository at this point in the history
  • Loading branch information
mykolaharmash committed Sep 12, 2024
1 parent f7f2ffd commit dea58d4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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');
Expand All @@ -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');
});
});
});
Expand Down

0 comments on commit dea58d4

Please sign in to comment.