From 4622d5d31c7221a7fe77efa7ae20e6128304f3ba Mon Sep 17 00:00:00 2001 From: Carlos Feria Date: Thu, 7 Nov 2024 16:53:14 +0100 Subject: [PATCH] fix: remove tests for searching importers. (#6) --- tests/importers.spec.ts | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/tests/importers.spec.ts b/tests/importers.spec.ts index 2c7e573..82b4a72 100644 --- a/tests/importers.spec.ts +++ b/tests/importers.spec.ts @@ -12,15 +12,4 @@ test.describe("Importers", { tag: "@tier0" }, () => { page.getByRole("heading", { name: "Importers" }) ).toBeVisible(); }); - - test("Search by name", async ({ page }) => { - await page.getByPlaceholder("Search by name...").click(); - await page.getByPlaceholder("Search by name...").fill("2024"); - await page.getByLabel("search button for search input").click(); - - await expect(page.getByLabel("CVEs table")).toContainText("cve-from-2024"); - await expect(page.getByLabel("CVEs table")).toContainText( - "redhat-csaf-vex-2024" - ); - }); });