Skip to content

Commit

Permalink
fix: remove tests for searching importers. (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosthe19916 authored Nov 7, 2024
1 parent 5689f82 commit 4622d5d
Showing 1 changed file with 0 additions and 11 deletions.
11 changes: 0 additions & 11 deletions tests/importers.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
);
});
});

0 comments on commit 4622d5d

Please sign in to comment.