fix(27): lint fixes — unused param, import order, formatting
This commit is contained in:
@@ -59,19 +59,16 @@ test.describe("Dashboard", () => {
|
||||
|
||||
// The old "collection card with item count of 6" test referenced a dashboard card
|
||||
// that no longer exists post-Phase-27. Mark as fixme until discovery feed is seeded.
|
||||
test.fixme(
|
||||
"shows collection card with item count of 6",
|
||||
async ({ page }) => {
|
||||
// NOTE: The old Collection dashboard card is removed. The landing page now
|
||||
// shows discovery sections (Popular Setups, Recently Added, etc.).
|
||||
// This test needs to be replaced with a discovery-feed-aware assertion.
|
||||
const collectionCard = page
|
||||
.getByRole("link", { name: /collection/i })
|
||||
.first();
|
||||
await expect(collectionCard).toBeVisible();
|
||||
await expect(collectionCard.getByText("6")).toBeVisible();
|
||||
},
|
||||
);
|
||||
test.fixme("shows collection card with item count of 6", async ({ page }) => {
|
||||
// NOTE: The old Collection dashboard card is removed. The landing page now
|
||||
// shows discovery sections (Popular Setups, Recently Added, etc.).
|
||||
// This test needs to be replaced with a discovery-feed-aware assertion.
|
||||
const collectionCard = page
|
||||
.getByRole("link", { name: /collection/i })
|
||||
.first();
|
||||
await expect(collectionCard).toBeVisible();
|
||||
await expect(collectionCard.getByText("6")).toBeVisible();
|
||||
});
|
||||
|
||||
// Planning card removed from dashboard — threads are accessed via Collection > Planning tab
|
||||
test.fixme("shows active thread count on Planning card", async ({ page }) => {
|
||||
|
||||
Reference in New Issue
Block a user