Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
shannonwells committed Oct 8, 2024
1 parent a5fa83b commit 8861fab
Showing 1 changed file with 0 additions and 13 deletions.
13 changes: 0 additions & 13 deletions client/tests/faucet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,19 +91,6 @@ export class FaucetTests {
await expect(captcha).toBeVisible();
});

test("page loads with default value in parachain field", async ({ page }) => {
await page.goto(this.url);
const { network } = await getFormElements(page);
await expect(network).toHaveValue("-1");
});

test("page with get parameter loads with value in parachain field", async ({ page }) => {
const parachainId = "1234";
await page.goto(`${this.url}?parachain=${parachainId}`);
const { network } = await getFormElements(page);
await expect(network).toHaveValue(parachainId);
});

test("page has captcha", async ({ page }) => {
await page.goto(this.url);
const { captcha } = await getFormElements(page, true);
Expand Down

0 comments on commit 8861fab

Please sign in to comment.