Skip to content

Commit

Permalink
test: Bump timeout on long running List component test (#3564)
Browse files Browse the repository at this point in the history
  • Loading branch information
DafyddLlyr authored Aug 26, 2024
1 parent 6e7e278 commit 469aa2b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ describe("Building a list", () => {
).toBeInTheDocument();
});

test("Editing an item", { timeout: 20000 }, async () => {
test("Editing an item", { timeout: 25000 }, async () => {
// Setup three cards
const { getAllByTestId, getByTestId, user } = setup(
<ListComponent {...mockZooProps} />,
Expand Down Expand Up @@ -235,7 +235,7 @@ describe("Building a list", () => {

test(
"Removing an item when all cards are inactive",
{ timeout: 20000 },
{ timeout: 25000 },
async () => {
// Setup three cards
const {
Expand Down

0 comments on commit 469aa2b

Please sign in to comment.