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
+6 -6
View File
@@ -8,7 +8,7 @@ import { expect, getTestHeicPath, test } from "./helpers";
// ---------------------------------------------------------------------------
function getFixturePath(name: string): string {
return path.join(process.cwd(), "tests", "fixtures", name);
return path.join(process.cwd(), "tests", "fixtures", "image", "valid", name);
}
function _uploadMultipleFiles(page: import("@playwright/test").Page, filePaths: string[]) {
@@ -48,7 +48,7 @@ test.describe("Batch processing preview and download", () => {
await expect(page.getByText(/conversion complete/i)).not.toBeVisible({ timeout: 30_000 });
// The image preview area should show an actual image
await expect(page.locator("section[aria-label='Image area'] img").first()).toBeVisible({
await expect(page.locator("section[aria-label='Preview area'] img").first()).toBeVisible({
timeout: 15_000,
});
@@ -86,13 +86,13 @@ test.describe("Batch processing preview and download", () => {
// Wait for processing - should show image preview
await page.waitForTimeout(3000);
await expect(page.locator("section[aria-label='Image area'] img").first()).toBeVisible({
await expect(page.locator("section[aria-label='Preview area'] img").first()).toBeVisible({
timeout: 20_000,
});
// Navigate to second image and verify it also has a preview
await page.getByRole("button", { name: "Next image" }).click();
await expect(page.locator("section[aria-label='Image area'] img").first()).toBeVisible({
await page.getByRole("button", { name: "Next file" }).click();
await expect(page.locator("section[aria-label='Preview area'] img").first()).toBeVisible({
timeout: 5_000,
});
});
@@ -102,7 +102,7 @@ test.describe("Batch processing preview and download", () => {
}) => {
await page.goto("/brightness-contrast");
await page.waitForURL("/image/adjust-colors");
await expect(page.getByText("Adjust Colors")).toBeVisible();
await expect(page.getByText("Adjust Colors").first()).toBeVisible();
});
});