From ade7b61bdc89c355f887c57906e46923c4ca317d Mon Sep 17 00:00:00 2001 From: Kunal-kankriya <127090035+Kunal-kankriya@users.noreply.github.com> Date: Mon, 8 Jan 2024 15:22:45 +0530 Subject: [PATCH] fix(smoke): removed AWS S3 Platform from tests (#9581) --- .../cypress/e2e/search/query_and_filter_search.js | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/smoke-test/tests/cypress/cypress/e2e/search/query_and_filter_search.js b/smoke-test/tests/cypress/cypress/e2e/search/query_and_filter_search.js index 59105be587803b..ee927feeaea586 100644 --- a/smoke-test/tests/cypress/cypress/e2e/search/query_and_filter_search.js +++ b/smoke-test/tests/cypress/cypress/e2e/search/query_and_filter_search.js @@ -6,7 +6,6 @@ const datasetNames = { tags: "some-cypress-feature-1", hivePlatform: "cypress_logging_events", airflowPlatform: "User Creations", - awsPlatform: "project/root/events/logging_events_bckp", hdfsPlatform: "SampleHdfsDataset" }; @@ -39,7 +38,7 @@ describe("auto-complete dropdown, filter plus query search test", () => { //Dashboard searchToExecute("*"); - selectFilteredEntity("Type", "Dashboards", "filter__entityType"); + selectFilteredEntity("Type", "Dashboards", "filter__entityType"); cy.clickOptionWithText(datasetNames.dashboardsType); verifyFilteredEntity('Dashboard'); @@ -74,12 +73,6 @@ describe("auto-complete dropdown, filter plus query search test", () => { cy.clickOptionWithText(datasetNames.hivePlatform); verifyFilteredEntity('Hive'); - //AWS S3 - searchToExecute("*"); - selectFilteredEntity("Platform", "AWS S3", "filter_platform"); - cy.clickOptionWithText(datasetNames.awsPlatform); - verifyFilteredEntity('AWS S3'); - //HDFS searchToExecute("*"); selectFilteredEntity("Platform", "HDFS", "filter_platform");