Skip to content

Commit ad4c7bb

Browse files
committed
Prettier formatting fix
1 parent ba694aa commit ad4c7bb

3 files changed

Lines changed: 5 additions & 13 deletions

File tree

app/web/components/SocialMediaLinks.test.tsx

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,5 @@
11
import { render, screen } from "@testing-library/react";
2-
import {
3-
facebookURL,
4-
githubURL,
5-
instagramURL,
6-
redditURL,
7-
} from "routes";
2+
import { facebookURL, githubURL, instagramURL, redditURL } from "routes";
83
import wrapper from "test/hookWrapper";
94

105
import SocialMediaLinks from "./SocialMediaLinks";

app/web/features/press/About.test.tsx

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,7 @@ describe("About", () => {
1212
expect(
1313
screen.getByText(t("press:about_mission_heading")),
1414
).toBeInTheDocument();
15-
expect(
16-
screen.getByText(t("press:about_blog_heading")),
17-
).toBeInTheDocument();
15+
expect(screen.getByText(t("press:about_blog_heading"))).toBeInTheDocument();
1816
expect(
1917
screen.getByText(t("press:about_foundation_heading")),
2018
).toBeInTheDocument();

app/web/features/team/TeamSection.test.tsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,9 @@ describe("TeamSection", () => {
9595
});
9696

9797
it("shows the board member badge for board members", () => {
98-
render(
99-
<TeamSection variant="current" volunteers={[boardMember]} />,
100-
{ wrapper },
101-
);
98+
render(<TeamSection variant="current" volunteers={[boardMember]} />, {
99+
wrapper,
100+
});
102101
expect(screen.getByText(t("global:team.board_member"))).toBeInTheDocument();
103102
});
104103

0 commit comments

Comments
 (0)