fix: update e2e tests for current UI, increase timeouts for CPU environments, and fix auth bypass bug

- Fix SKIP_MUST_CHANGE_PASSWORD not affecting login/session API responses,
  causing frontend redirect even when the env var was set after user creation
- Increase Docker Playwright timeouts (test: 600s, expect: 60s, AI processing: 300s)
  to support CPU-only self-hosted environments
- Increase default rate limit from 100 to 50000 req/min for self-hosted deployments
- Fix OCR tests: use filechooser pattern (Dropzone has no static file input),
  correct enhance checkbox default, rewrite for actual fixture behavior
- Fix remove-bg tests: update quality labels (Balanced→HD, Best→Max)
- Fix noise-removal skip guard: use waitFor() instead of instant isVisible()
- Fix automate pipeline save test: clean up stale E2E pipelines before assertion
This commit is contained in:
ashim-hq
2026-04-20 15:03:56 +08:00
parent e20418c3e1
commit ac5fdfb841
9 changed files with 68 additions and 67 deletions
+4 -4
View File
@@ -27,7 +27,7 @@ async function removeBgAndWait(page: import("@playwright/test").Page) {
page
.getByTestId("remove-background-download")
.or(page.getByTestId("remove-background-download-effects")),
).toBeVisible({ timeout: 120_000 });
).toBeVisible({ timeout: 300_000 });
}
test.describe("Remove Background tool", () => {
@@ -38,8 +38,8 @@ test.describe("Remove Background tool", () => {
await expect(page.getByText("Products")).toBeVisible();
await expect(page.getByText("General")).toBeVisible();
await expect(page.getByText("Fast")).toBeVisible();
await expect(page.getByText("Balanced")).toBeVisible();
await expect(page.getByText("Best")).toBeVisible();
await expect(page.getByText("HD")).toBeVisible();
await expect(page.getByText("Max")).toBeVisible();
// Passport checkbox visible and checked by default
const passportCheckbox = page.locator("input[type='checkbox']").first();
@@ -289,7 +289,7 @@ test.describe("Remove Background tool", () => {
await page.getByTestId("remove-background-submit").click();
await expect(page.getByRole("button", { name: /download all/i })).toBeVisible({
timeout: 180_000,
timeout: 300_000,
});
await expect(page.locator("section[aria-label='Image area'] img").first()).toBeVisible({