From 5dd960a796689ed715bcc1adb553a538a60f9f99 Mon Sep 17 00:00:00 2001 From: JennyNou Date: Wed, 25 Mar 2026 15:42:46 -0400 Subject: [PATCH] Remove commented out code --- playwright-tests/pages/TpaSubmitPage.ts | 9 --------- 1 file changed, 9 deletions(-) diff --git a/playwright-tests/pages/TpaSubmitPage.ts b/playwright-tests/pages/TpaSubmitPage.ts index 1726a75e..0439adbe 100644 --- a/playwright-tests/pages/TpaSubmitPage.ts +++ b/playwright-tests/pages/TpaSubmitPage.ts @@ -21,15 +21,6 @@ export class TpaSubmitPage extends BasePage { this.deductible = page.locator('span#deductible-value, span.deductible-value'); } - /* TODO: Fix flakiness of recal alert - /*async validateRecalAlert() { - await this.recalAlert.waitFor({ state: 'visible', timeout: 5000 }); - await this.learnMoreLink.click(); - await this.recalModal.waitFor({ state: 'visible', timeout: 5000 }); - await this.recalModal.getByRole('button', { name: 'Close' }).click(); - - }*/ - async validateDeductible(claimDetails: IClaimDetails) { await expect(this.deductible).toContainText(claimDetails.policyDeductible.toLocaleString()); }