Create Community stage implemented

This commit is contained in:
adilallo
2026-04-14 09:22:03 -06:00
parent a0de78c020
commit f8255bc2c7
73 changed files with 1105 additions and 392 deletions
+4 -2
View File
@@ -8,7 +8,7 @@ describe("CommunityUploadScreen", () => {
render(<CommunityUploadScreen />);
expect(
screen.getByRole("heading", {
name: "How should conflicts be resolved?",
name: "Add a photo to identify your group",
}),
).toBeInTheDocument();
});
@@ -17,7 +17,9 @@ describe("CommunityUploadScreen", () => {
render(<CommunityUploadScreen />);
expect(screen.getByRole("button", { name: "Upload" })).toBeInTheDocument();
expect(
screen.getByText(/Add images, PDFs, and other files to the policy/i),
screen.getByText(
/This photo be used as a profile picture for your group/i,
),
).toBeInTheDocument();
});
});