Skip to content

Commit

Permalink
fix: Resolve Wallet Popup Timeout Issue
Browse files Browse the repository at this point in the history
  • Loading branch information
NabinKawan committed Jun 5, 2024
1 parent beab827 commit f27ce68
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,9 @@ test.describe("Temporary DReps", () => {
test("3G. Should show confirmation message with link to view transaction, when DRep registration txn is submitted", async ({
page,
browser,
}) => {
}, testInfo) => {
test.setTimeout(testInfo.timeout + environments.txTimeOut);

const wallet = await walletManager.popWallet("registerDRep");

const tempDRepAuth = await createTempDRepAuth(page, wallet);
Expand All @@ -96,6 +98,8 @@ test.describe("Temporary DReps", () => {
});

test("3J. Should verify retire as DRep", async ({ page, browser }) => {
test.slow(); // Due to queue in pop wallets

const wallet = await walletManager.popWallet("registeredDRep");

const tempDRepAuth = await createTempDRepAuth(page, wallet);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -122,6 +122,8 @@ test("4F. Should Disable DRep functionality upon wallet disconnection on governa
page,
browser,
}) => {
test.slow(); // Due to queue in pop wallets

const wallet = await walletManager.popWallet("registeredDRep");

const tempDRepAuth = await createTempDRepAuth(page, wallet);
Expand Down

0 comments on commit f27ce68

Please sign in to comment.