Skip to content

Commit

Permalink
fixing ftrs
Browse files Browse the repository at this point in the history
  • Loading branch information
seanrathier committed Oct 8, 2024
1 parent b2a4841 commit 0fe3408
Showing 1 changed file with 0 additions and 12 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {
const pageObjects = getPageObjects(['common', 'svlCommonPage', 'cisAddIntegration', 'header']);

const supertest = getService('supertest');
const previousPackageVersion = '1.9.0';

describe('Agentless CIS Integration Page', function () {
// TODO: we need to check if the tests are running on MKI. There is a suspicion that installing csp package via Kibana server args is not working on MKI.
Expand Down Expand Up @@ -75,17 +74,6 @@ export default function ({ getPageObjects, getService }: FtrProviderContext) {

expect(await cisIntegrationGcp.showLaunchCloudShellAgentlessButton()).to.be(true);
});

it(`should hide CIS_GCP Launch Cloud shell button when package version is ${previousPackageVersion}`, async () => {
await cisIntegration.navigateToAddIntegrationCspmWithVersionPage(previousPackageVersion);

await cisIntegration.clickOptionButton(testSubjectIds.CIS_GCP_OPTION_TEST_ID);
await cisIntegration.selectSetupTechnology('agentless');

await pageObjects.header.waitUntilLoadingHasFinished();

expect(await cisIntegrationGcp.showLaunchCloudShellAgentlessButton()).to.be(false);
});
});

describe.skip('Serverless - Agentless CIS_GCP edit flow', () => {
Expand Down

0 comments on commit 0fe3408

Please sign in to comment.