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.
This commit is contained in:
maguire-arman 2025-06-23 10:02:48 -04:00
parent 89274929cb
commit eb9a5bffe2

View file

@ -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;