Skip to content

Commit

Permalink
Remove twitter from e2e playwright test
Browse files Browse the repository at this point in the history
  • Loading branch information
Xpirix committed May 13, 2024
1 parent 57d4cce commit 550e156
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion playwright/ci-test/tests/01-home-page.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,6 @@ test.describe("Home page", () => {
await expect(footer.goodiesLink).toBeVisible();
await expect(footer.logoImage).toBeVisible();
await expect(footer.facebookLink).toBeVisible();
await expect(footer.twitterLink).toBeVisible();
await expect(footer.youtubeLink).toBeVisible();
await expect(footer.mapstodonLink).toBeVisible();
await expect(footer.ghLink).toBeVisible();
Expand Down
2 changes: 0 additions & 2 deletions playwright/ci-test/tests/fixtures/footer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ export class Footer {
public readonly goodiesLink: Locator;
public readonly logoImage: Locator;
public readonly facebookLink: Locator;
public readonly twitterLink: Locator;
public readonly youtubeLink: Locator;
public readonly mapstodonLink: Locator;
public readonly ghLink: Locator;
Expand Down Expand Up @@ -118,7 +117,6 @@ export class Footer {
this.goodiesLink = this.page.getByRole("link", { name: "Goodies" });
this.logoImage = this.page.getByRole("img", { name: "Logo" });
this.facebookLink = this.page.getByRole("link", { name: "" });
this.twitterLink = this.page.getByRole("link", { name: "" });
this.youtubeLink = this.page.getByRole("link", { name: "" });
this.mapstodonLink = this.page
.locator("div:nth-child(2) > div:nth-child(2) > a:nth-child(4)")
Expand Down

0 comments on commit 550e156

Please sign in to comment.