Skip to content

Commit

Permalink
fix: disable e2e tess
Browse files Browse the repository at this point in the history
  • Loading branch information
VGau committed Sep 18, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent fecc3c0 commit 070a70f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions bridge-ui/test/e2e/bridge-l1-l2.spec.ts
Original file line number Diff line number Diff line change
@@ -7,7 +7,7 @@ const test = testWithSynpress(advancedFixtures);
const { expect, describe } = test;

describe("Bridge L1 > L2", () => {
test("should set up the UI and metamask correctly", async ({ page, metamask, initUI }) => {
test.skip("should set up the UI and metamask correctly", async ({ page, metamask, initUI }) => {
await initUI(true);

await page.locator("#wallet-connect-btn").click();
@@ -23,14 +23,14 @@ describe("Bridge L1 > L2", () => {
expect(pageUrl).toEqual(TEST_URL);
});

test("should successfully display the correct heading", async ({ page, initUI }) => {
test.skip("should successfully display the correct heading", async ({ page, initUI }) => {
await initUI(true);

const header = "Bridge";
await page.locator("h2", { hasText: header }).waitFor({ state: "visible" });
});

test("metamask should be connected to the right network", async ({ page, metamask, initUI }) => {
test.skip("metamask should be connected to the right network", async ({ page, metamask, initUI }) => {
await initUI(true);

await page.locator("#wallet-connect-btn").click();
@@ -62,7 +62,7 @@ describe("Bridge L1 > L2", () => {
await page.locator("#transactions-list").locator("ul").nth(1).waitFor({ timeout: 10_000 });
});

test("should be able to switch network", async ({ page, metamask, initUI }) => {
test.skip("should be able to switch network", async ({ page, metamask, initUI }) => {
await initUI(true);
await page.locator("#wallet-connect-btn").click();
await page.locator("wui-list-wallet", { hasText: "MetaMask" }).nth(1).click();

0 comments on commit 070a70f

Please sign in to comment.