From eb9a5bffe28c2698824fa68098c2f9be1ef6fc06 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Mon, 23 Jun 2025 10:02:48 -0400 Subject: [PATCH] Temporarily disables heavy truck tests Disables heavy truck and split windshield tests in both standard and alert test suites. These tests are commented out due to ongoing QA processes and will be re-enabled once ready. --- playwright-tests/tests/0000__M.test.ts | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/playwright-tests/tests/0000__M.test.ts b/playwright-tests/tests/0000__M.test.ts index 65e7a6986..5ccd08ed0 100644 --- a/playwright-tests/tests/0000__M.test.ts +++ b/playwright-tests/tests/0000__M.test.ts @@ -71,7 +71,8 @@ const allStandardTests = [ {name: "CashReplaceWiperDropoff", tests: cashReplaceWiperDropoffTests}, {name: "CashReplaceWiperPromoInshop", tests: cashReplaceWiperPromoInShopTests}, {name: "CashReplaceSwitchToInsuranceProgressiveNoComp", tests: cashReplaceSwitchToInsuranceProgressiveNoCompTests}, - {name: "CashReplaceSplitWindshield", tests: CashReplaceSplitWindshieldTests}, + // TODO: Uncomment when QA is ready to run heavy truck tests + // {name: "CashReplaceSplitWindshield", tests: CashReplaceSplitWindshieldTests}, {name: "InsuranceAcuityPaypal", tests: insuranceAcuityPaypalTests}, {name: "InsuranceITAC21stCentury", tests: insuranceITAC21stCenturyTests}, {name: "InsuranceNoCompProgressive", tests: insuranceNoCompProgressiveTests}, @@ -84,9 +85,10 @@ const allStandardTests = [ // Alert validation scenarios const allAlertTests = [ - { name: "Alert Scenario 1: Heavy Truck", tests: heavyTruckTests }, + //TODO: Uncomment when QA is ready to run heavy truck tests + // { name: "Alert Scenario 1: Heavy Truck", tests: heavyTruckTests }, { name: "Alert Scenario 2: Repair and Replace", tests: repairAndReplaceTests }, - { name: "Alert Scenario 3: Split Windshield", tests: splitWindshieldTests }, + // { name: "Alert Scenario 3: Split Windshield", tests: splitWindshieldTests }, { name: "Alert Scenario 4: Repair Only", tests: repairOnlyTests }, { name: "Alert Scenario 5: Unserviceable Zip", tests: unserviceableZipTests }, { name: "Alert Scenario 6: Invalid Zip", tests: invalidZipTests }, @@ -281,7 +283,7 @@ async function runWorkflow(page: Page, testCase: TestCase) { // Select service location let serviceLocationPage = testCase.pages.serviceLocationPage; await serviceLocationPage.handleServiceLocationPage(testCase.testData); - + // Schedule appointment let schedulePage = testCase.pages.schedulePage;