Skip to content

Commit

Permalink
[8.17] [Cloud Security] skip flaky tests (#197143) (#190967) (#210741)
Browse files Browse the repository at this point in the history
# Backport

This will skip the following tests in version `8.17`:
 - (#197143)
 - #190967

### Questions ?
Please refer to the [Backport tool
documentation](https://github.com/sorenlouv/backport)
  • Loading branch information
alexreal1314 authored Feb 13, 2025
1 parent 19abeec commit bd4b57d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ export default function (providerContext: FtrProviderContext) {
});

describe('CNVM AWS', () => {
it('Hyperlink on PostInstallation Modal should have the correct URL', async () => {
// fixed by https://github.com/elastic/kibana/pull/208345 in v9.0
it.skip('Hyperlink on PostInstallation Modal should have the correct URL', async () => {
await cisIntegration.navigateToAddIntegrationCnvmPage();
await cisIntegration.inputUniqueIntegrationName();
await pageObjects.header.waitUntilLoadingHasFinished();
Expand All @@ -36,7 +37,7 @@ export default function (providerContext: FtrProviderContext) {
);
});

it('On Add Agent modal there should be modal that has Cloud Formation details as well as button that redirects user to Cloud formation page on AWS upon clicking them ', async () => {
it.skip('On Add Agent modal there should be modal that has Cloud Formation details as well as button that redirects user to Cloud formation page on AWS upon clicking them ', async () => {
await cisIntegration.navigateToIntegrationCspList();
await cisIntegration.clickFirstElementOnIntegrationTableAddAgent();
expect(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ export default ({ getPageObjects }: FtrProviderContext) => {
await findings.waitForPluginInitialized();
});

it('Vulnerabilities - clicking on the `No integrations installed` prompt action button - `install CNVM`: navigates to the CNVM integration installation page', async () => {
// fixed by https://github.com/elastic/kibana/pull/208345 in v9.0
it.skip('Vulnerabilities - clicking on the `No integrations installed` prompt action button - `install CNVM`: navigates to the CNVM integration installation page', async () => {
await findings.navigateToLatestVulnerabilitiesPage();
await PageObjects.header.waitUntilLoadingHasFinished();
const element = await notInstalledVulnerabilities.getElement();
Expand Down

0 comments on commit bd4b57d

Please sign in to comment.