diff --git a/cypress/e2e/state-calculator.cy.ts b/cypress/e2e/state-calculator.cy.ts index 0b731dd..e780180 100644 --- a/cypress/e2e/state-calculator.cy.ts +++ b/cypress/e2e/state-calculator.cy.ts @@ -59,10 +59,6 @@ describe('rewiring-america-state-calculator', () => { cy.selectProjects(['hvac']); - cy.get('rewiring-america-state-calculator') - .shadow() - .contains('Discount off a heat pump'); - cy.get('rewiring-america-state-calculator') .shadow() .contains('$1,000/ton off an air source heat pump'); diff --git a/src/ira-rebates.ts b/src/ira-rebates.ts index 36759fd..5f8093a 100644 --- a/src/ira-rebates.ts +++ b/src/ira-rebates.ts @@ -59,7 +59,7 @@ const hearRebates: { * As states launch their HEAR and HER programs, we'll want to stop showing this * generic info to users in those states. */ -const HEAR_EXCLUDE_STATES = new Set(['NY']); +const HEAR_EXCLUDE_STATES = new Set(['NY', 'RI']); const HER_EXCLUDE_STATES = new Set(['ME', 'WI']); export function getRebatesFor(response: APIResponse, msg: MsgFn): IRARebate[] {