Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Onboarding] Fix failing Cypress tests #192577

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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', () => {
Copy link
Contributor Author

@mykolaharmash mykolaharmash Sep 11, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I could not make this fail, suspect some other change already has "fixed" it as the issue is quite old at this point.

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