Radish alpha
r
rad:z4D5UCArafTzTQpDZNQRuqswh3ury
Radicle desktop app
Radicle
Git
Remove authenticate e2e test
Sebastian Martinez committed 1 year ago
commit 2d685715b9f108bfb2dfb9eb4e04885f5553e91f
parent 738e7f4
1 file changed +0 -21
deleted tests/e2e/authenticate.spec.ts
@@ -1,21 +0,0 @@
-
import { test, expect } from "@tests/support/fixtures.js";
-

-
test("removing identities from ssh-agent and re-adding them", async ({
-
  page,
-
  peer,
-
}) => {
-
  await page.goto("/");
-
  await expect(
-
    page.getByText("z6MktULudTtAsAhRegYPiZ6631RV3viv12qd4GQF8z1xB22S"),
-
  ).toBeVisible();
-

-
  await peer.logOut();
-
  await expect(
-
    page.getByText("Not able to find your keys in the ssh agent"),
-
  ).toBeVisible();
-

-
  await peer.authenticate();
-
  await expect(
-
    page.getByText("z6MktULudTtAsAhRegYPiZ6631RV3viv12qd4GQF8z1xB22S"),
-
  ).toBeVisible();
-
});