feat: pipeline templates, analytics opt-out, 83 conversion presets, positioning + e2e modernization

Lands five integrated branches: pipeline templates (#355), analytics opt-out (#354), 83 conversion presets bringing the catalog to 240 tools (#356), self-hosted positioning (#353), and e2e modernization (#351).

Integration fixes: aligned stale web analytics tests with the opt-out/allow-list model, closed 3 CodeQL incomplete-sanitization alerts in the i18n generator, resolved settings/index/docs/format-matrix conflicts, and corrected tool counts to 240.
This commit is contained in:
SnapOtter
2026-06-28 18:57:53 +08:00
committed by GitHub
parent 88af8d46fb
commit 63a03d26f2
421 changed files with 17308 additions and 2540 deletions
+14 -7
View File
@@ -140,10 +140,14 @@ test.describe("Visual regression: Tool pages", () => {
test.describe("Visual regression: Fullscreen grid", () => {
test.skip(!isDocker, "Visual regression baselines are Docker-specific");
// 2.0 removed the /fullscreen route. The home page ("/") is now the tool
// catalog, which is the equivalent grid view, so these capture "/".
test("fullscreen grid - desktop", async ({ loggedInPage: page }) => {
await page.setViewportSize({ width: 1280, height: 720 });
await page.goto("/fullscreen");
await page.goto("/");
await page.waitForLoadState("networkidle");
await expect(page.locator("[data-search-input]")).toBeVisible();
await page.waitForTimeout(500);
await expect(page).toHaveScreenshot("fullscreen-grid-desktop.png", {
@@ -154,8 +158,9 @@ test.describe("Visual regression: Fullscreen grid", () => {
test("fullscreen grid - tablet", async ({ loggedInPage: page }) => {
await page.setViewportSize({ width: 768, height: 1024 });
await page.goto("/fullscreen");
await page.goto("/");
await page.waitForLoadState("networkidle");
await expect(page.locator("[data-search-input]")).toBeVisible();
await page.waitForTimeout(500);
await expect(page).toHaveScreenshot("fullscreen-grid-tablet.png", {
@@ -166,8 +171,9 @@ test.describe("Visual regression: Fullscreen grid", () => {
test("fullscreen grid - mobile", async ({ loggedInPage: page }) => {
await page.setViewportSize({ width: 375, height: 667 });
await page.goto("/fullscreen");
await page.goto("/");
await page.waitForLoadState("networkidle");
await expect(page.locator("[data-search-input]")).toBeVisible();
await page.waitForTimeout(500);
await expect(page).toHaveScreenshot("fullscreen-grid-mobile.png", {
@@ -186,11 +192,12 @@ test.describe("Visual regression: Sidebar", () => {
await page.waitForLoadState("networkidle");
await page.waitForTimeout(500);
// Capture the sidebar region
const sidebar = page.locator("aside").first();
await expect(sidebar).toBeVisible();
// 2.0 removed the desktop sidebar; navigation now lives in the top nav bar
// (the <header> banner). Capture that region in place of the old sidebar.
const nav = page.getByRole("banner").first();
await expect(nav).toBeVisible();
await expect(sidebar).toHaveScreenshot("sidebar-desktop.png", {
await expect(nav).toHaveScreenshot("sidebar-desktop.png", {
maxDiffPixelRatio: 0.01,
});
});