Skip to content

Commit

Permalink
remove trailing slash
Browse files Browse the repository at this point in the history
Signed-off-by: Micah Chiang <micahkchiang@gmail.com>
  • Loading branch information
micahchiang committed Mar 13, 2024
1 parent 3583878 commit 7647e15
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('Medical Copays - CDP Alerts', () => {
cy.intercept('GET', '/v0/feature_toggles*', mockFeatureToggles);
cy.intercept('GET', '/v0/medical_copays', mockCopays);
cy.intercept('GET', '/v0/debts', mockDebt);
cy.visit('/health-care/pay-copay-bill/your-current-balances/');
cy.visit('/health-care/pay-copay-bill/your-current-balances');
cy.findByTestId('overview-page-title').should('exist');
cy.injectAxe();
cy.findByTestId(`balance-card-${id}`).should('exist');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('Medical Copays', () => {
cy.login(mockUser);
cy.intercept('GET', '/v0/feature_toggles*', mockFeatureToggles);
cy.intercept('GET', '/v0/medical_copays', mockCopays);
cy.visit('/health-care/pay-copay-bill/your-current-balances/');
cy.visit('/health-care/pay-copay-bill/your-current-balances');
cy.findByTestId('overview-page-title').should('exist');
cy.injectAxe();
});
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('Medical Copays', () => {
cy.intercept('GET', '/v0/feature_toggles*', mockFeatureToggles);
cy.intercept('GET', '/v0/medical_copays', mockCopays);
cy.intercept('GET', '/v0/debts', mockDebt);
cy.visit('/health-care/pay-copay-bill/your-current-balances/');
cy.visit('/health-care/pay-copay-bill/your-current-balances');
cy.findByTestId('overview-page-title').should('exist');
cy.injectAxe();
});
Expand Down

0 comments on commit 7647e15

Please sign in to comment.