Skip to content

Commit

Permalink
fix: simplify guild pin spec
Browse files Browse the repository at this point in the history
  • Loading branch information
BrickheadJohnny committed Jul 26, 2024
1 parent 2a79cc1 commit 6392b56
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions playwright/03-guild-pin.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,6 @@ test("can mint guild pin", async ({ pageWithKeyPair: { page } }) => {

await page.waitForResponse("**/v2/guilds/*/pin")

const txInProgressDialog = await page.getByRole("dialog", {
name: "Transaction is processing...",
})
await expect(txInProgressDialog).toBeVisible({
timeout: 20_000,
})

const successToast = await page.getByText("Successfully minted Guild Pin!")
await expect(successToast).toBeVisible({ timeout: 10_000 })
await expect(successToast).toBeVisible({ timeout: 30_000 })
})

0 comments on commit 6392b56

Please sign in to comment.