Skip to content
This repository has been archived by the owner on Sep 18, 2024. It is now read-only.

Commit

Permalink
Cleanup tests
Browse files Browse the repository at this point in the history
  • Loading branch information
acouch committed May 15, 2024
1 parent 338781b commit 9d95d14
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions frontend/src/pages/content/ProcessInvolved.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const ProcessInvolved = () => {
{chunks}
</a>
),
strong: (chunks) => (<strong> {chunks} </strong>),
});
const para2 = t.rich("involved.paragraph_2", {
github: (chunks) => (
Expand All @@ -37,6 +38,7 @@ const ProcessInvolved = () => {
{chunks}
</a>
),
strong: (chunks) => (<strong> {chunks} </strong>)
});
return (
<ContentLayout data-testid="process-involved-content" bottomBorder="none">
Expand Down
4 changes: 2 additions & 2 deletions frontend/tests/pages/process.test.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { render, screen, waitFor } from "@testing-library/react";
import { render, screen, waitFor } from "tests/react-utils";
import { axe } from "jest-axe";
import Process from "src/pages/process";
import Process from "src/app/process/page";

describe("Process", () => {
it("renders alert with grants.gov link", () => {
Expand Down

0 comments on commit 9d95d14

Please sign in to comment.