Radish alpha
r
Radicle web interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Remove connect integration test
Sebastian Martinez committed 3 years ago
commit cfd612b09d5ce63a18eadaf62998e73803134891
parent 513e4876005aff9f7aedf5f7f2442b202c1af035
1 file changed +0 -21
deleted cypress/e2e/connect.spec.ts
@@ -1,21 +0,0 @@
-
/// <reference types="cypress" />
-
import { MockExtensionProvider } from "../support/e2e";
-

-
describe("MetaMask", () => {
-
  it("Lets user connect with Metamask provider", () => {
-
    cy.visit("/faucet", {
-
      onBeforeLoad(win) {
-
        win.ethereum = new MockExtensionProvider("rinkeby", "0x3256a804085C24f3451cAb2C98a37e16DEEc5721");
-
      }
-
    });
-
    cy.intercept("POST", "https://api.thegraph.com/subgraphs/name/radicle-dev/radicle-orgs-rinkeby", { data: { safe: null } } );
-
    cy.intercept("https://gateway.ceramic.network/api/v0/streams", { fixture: "ceramicStream.json" });
-
    cy.get("button.connect").should("have.text", "Connect").click();
-
    cy.get("button.secondary").should("have.text", "Connect with Metamask").click();
-
    cy.get("button.address").should("contain", "3256 – 5721");
-
    cy.window().then((win) => {
-
      win.ethereum.changeAccount("0xd3b5586D15140B6f793b260fd90588A0dAefc5B6");
-
    });
-
    cy.get("button.address").should("contain", "d3b5 – c5B6");
-
  });
-
});