Skip to content

Commit

Permalink
Set async test timeouts to 5s
Browse files Browse the repository at this point in the history
  • Loading branch information
carina-akaia committed Jun 4, 2024
1 parent 07346e1 commit 3e962e7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/tests.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ test("Homepage", async () => {
"project cards loaded",
).toBeDefined(),

{ timeout: 2000 },
{ timeout: 5000 },
);

const projectTitles = screen.getAllByTestId("project-card-title");
Expand All @@ -37,6 +37,6 @@ test("Homepage", async () => {
"project fundraising amounts",
).toBeTruthy(),

{ timeout: 2000 },
{ timeout: 5000 },
);
});

0 comments on commit 3e962e7

Please sign in to comment.