Skip to content

Commit

Permalink
remove everything
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 7647e15 commit 92bc902
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/applications/medical-copays/components/AlertView.jsx
Expand Up @@ -37,7 +37,7 @@ const AlertView = ({ pathname, alertType, error, cdpToggle, hasDebts }) => {

return (
<>
<VaBreadcrumbs uswds="false" label="Breadcrumb">
<VaBreadcrumbs label="Breadcrumb">
<a href="/">Home</a>
<a href="/health-care">Health care</a>
<a href="/health-care/pay-copay-bill">Pay your VA copay bill</a>
Expand Down
5 changes: 1 addition & 4 deletions src/applications/medical-copays/containers/DetailPage.jsx
Expand Up @@ -45,10 +45,7 @@ const DetailPage = ({ match }) => {

return (
<>
<va-breadcrumbs
uswds="false"
className="vads-u-font-family--sans no-wrap"
>
<va-breadcrumbs className="vads-u-font-family--sans no-wrap">
<a href="/">Home</a>
<a href="/health-care">Health care</a>
<a href="/health-care/pay-copay-bill">Pay your VA copay bill</a>
Expand Down
Expand Up @@ -32,10 +32,7 @@ const HTMLStatementPage = ({ match }) => {
return (
<>
<article>
<va-breadcrumbs
uswds="false"
className="vads-u-font-family--sans no-wrap"
>
<va-breadcrumbs className="vads-u-font-family--sans no-wrap">
<a href="/">Home</a>
<a href="/health-care">Health care</a>
<a href="/health-care/pay-copay-bill">Pay your VA copay bill</a>
Expand Down
Expand Up @@ -59,7 +59,7 @@ const OverviewPage = () => {
return (
<>
<div className="vads-u-font-family--sans no-wrap">
<VaBreadcrumbs uswds="false" label="Breadcrumb">
<VaBreadcrumbs label="Breadcrumb">
<a href="/">Home</a>
<a href="/health-care">Health care</a>
<a href="/health-care/pay-copay-bill">Pay your VA copay bill</a>
Expand Down
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
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
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 92bc902

Please sign in to comment.