fix(27): lint fixes — unused param, import order, formatting
All checks were successful
CI / ci (push) Successful in 1m8s
CI / e2e (push) Has been skipped
CI / deploy (push) Successful in 13s

This commit is contained in:
2026-04-10 23:54:46 +02:00
parent 3144d290d4
commit a576f53d33
4 changed files with 17 additions and 30 deletions

View File

@@ -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 }) => {