Skip to content

Commit

Permalink
chore: update assertion timeout of 5K and 3F
Browse files Browse the repository at this point in the history
  • Loading branch information
kneerose committed Sep 1, 2024
1 parent 5a303b9 commit c96cd43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ test("3F. Should create proper DRep registration request, when registered with d
await dRepRegistrationPage.registerWithoutTxConfirmation({ name: "Test" });
await expect(
page.getByTestId("registration-transaction-error-modal")
).toBeVisible();
).toBeVisible({ timeout: 10_000 });
});

test("3O. Should reject invalid dRep registration metadata", async ({
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ test.describe("Check voting power", () => {
await dRepPage.getByTestId("continue-retirement-button").click();
await expect(
dRepPage.getByTestId("retirement-transaction-submitted-modal")
).toBeVisible();
).toBeVisible({ timeout: 15_000 });
dRepPage.getByTestId("confirm-modal-button").click();
await waitForTxConfirmation(dRepPage);

Expand Down

0 comments on commit c96cd43

Please sign in to comment.