- Move edit and delete actions from hidden popover to visible buttons - Restructure card layout: status badge and action buttons at top, title below <img width="1029" height="414" alt="image" src="https://github.com/user-attachments/assets/60497f87-254e-4f4d-9f8c-ea73b8f2526e" /> closes #1358 <!-- This is an auto-generated description by cubic. --> --- ## Summary by cubic Made edit and delete always visible on custom provider cards and restructured the card layout for clearer actions and status. Improves discoverability and aligns with #1358. - **Refactors** - Replaced popover menu with visible Edit and Delete icon buttons (data-testid: edit-custom-provider, delete-custom-provider). - Moved status badge and actions to the top; title now sits below; badges don’t wrap. - Updated e2e tests to use new buttons and adjusted selectors for the updated heading. <!-- End of auto-generated description by cubic. -->
11 lines
366 B
TypeScript
11 lines
366 B
TypeScript
import { test } from "./helpers/test_helper";
|
|
|
|
test("delete custom provider should not freeze", async ({ po }) => {
|
|
await po.setUp();
|
|
await po.goToSettingsTab();
|
|
await po.page.getByTestId("delete-custom-provider").click();
|
|
await po.page.getByRole("button", { name: "Delete Provider" }).click();
|
|
// Make sure UI hasn't freezed
|
|
await po.goToAppsTab();
|
|
});
|