diff --git a/e2e/explore-page.spec.ts b/e2e/explore-page.spec.ts index 49a607ebe..db274ec65 100644 --- a/e2e/explore-page.spec.ts +++ b/e2e/explore-page.spec.ts @@ -2,5 +2,5 @@ import { test, expect } from "@playwright/test"; test("Loads explore dashboard page", async ({ page }) => { await page.goto("/explore/topic/javascript"); - await expect(page.getByRole("complementary", { name: "pull request highlights", exact: true })).toBeVisible(); + await expect(page.getByRole("button", { name: "Connect with GitHub", exact: true })).toBeVisible(); });