Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion e2e-tests/playwright/e2e/extensions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@
});

// FIXME https://issues.redhat.com/browse/RHIDP-8971
test.describe.skip("Extensions > Catalog", () => {

Check warning on line 58 in e2e-tests/playwright/e2e/extensions.spec.ts

View workflow job for this annotation

GitHub Actions / TSC, ESLint and Prettier

Unexpected use of the `.skip()` annotation
test("Verify search bar in extensions", async ({ page }) => {
await uiHelper.searchInputAriaLabel("Dynatrace");
await uiHelper.verifyHeading("DynaTrace");
Expand Down Expand Up @@ -490,7 +490,7 @@
);
});

test.skip("Installed packages page", async ({ page }, testInfo) => {

Check warning on line 493 in e2e-tests/playwright/e2e/extensions.spec.ts

View workflow job for this annotation

GitHub Actions / TSC, ESLint and Prettier

Unexpected use of the `.skip()` annotation
await runAccessibilityTests(page, testInfo);
await uiHelper.verifyTableHeadingAndRows([
t["plugin.extensions"][lang]["installedPackages.table.columns.name"],
Expand Down Expand Up @@ -521,7 +521,9 @@
await expect(
page.getByRole("cell", { name: "Frontend plugin module" }),
).toBeVisible();
await expect(page.getByRole("cell", { name: "1.1.30" })).toBeVisible();
await expect(
page.getByRole("cell", { name: /(\d+)\.(\d+)\.(\d+)/ }),
).toBeVisible();

// Verify actions column - in production, buttons are disabled with tooltip
const techdocsRow = page
Expand Down
Loading