Remove commented out code

This commit is contained in:
JennyNou 2026-03-25 15:42:46 -04:00
parent c03f8a32ea
commit 5dd960a796

View file

@ -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());
}