From 4eb2439d646ee850ccd16431dcab808f5410696e Mon Sep 17 00:00:00 2001 From: Matt Aitken Date: Wed, 13 Sep 2023 13:57:35 +0100 Subject: [PATCH] =?UTF-8?q?Don=E2=80=99t=20check=20for=20the=20page=20titl?= =?UTF-8?q?e=20in=20verify=20jobs=20e2e=20test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- tests/e2e/e2e.spec.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/e2e/e2e.spec.ts b/tests/e2e/e2e.spec.ts index 5eaa2ecdb..0af5bbe98 100644 --- a/tests/e2e/e2e.spec.ts +++ b/tests/e2e/e2e.spec.ts @@ -28,9 +28,6 @@ test("Verify jobs from the test nextjs project", async ({ page }) => { await page.getByRole("button", { name: "Send a magic link" }).click(); await page.getByRole("link", { name: /Test Project/ }).click(); - await expect( - page.locator("h1").filter({ hasText: /^Choose a framework to get started/ }) - ).toBeVisible(); await page.getByRole("link", { name: "Environments & API Keys" }).click(); await expect(page.locator("h1").filter({ hasText: "Environments & API Keys" })).toBeVisible();