Configure Tailwind styling pipeline

This commit is contained in:
2026-08-05 12:52:06 +02:00
parent 4c0c53d6e9
commit e60522495a
7 changed files with 2033 additions and 855 deletions
+9
View File
@@ -21,3 +21,12 @@ test("settings modal opens and shows local database controls", async ({ page })
await expect(page.locator("#localDbHost")).toBeVisible();
await expect(page.locator("#testLocalDbButton")).toBeVisible();
});
test("catalog maker remains usable on a narrow viewport", async ({ page }) => {
await page.setViewportSize({ width: 390, height: 844 });
await page.goto("/");
await expect(page.locator("#findSourcesButton")).toBeVisible();
await expect(page.locator("#settingsButton")).toBeVisible();
await page.screenshot({ path: "test-results/catalog-maker-mobile.png", fullPage: true });
});