Configure Tailwind styling pipeline
This commit is contained in:
@@ -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 });
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user