Task 6: finalize tests and CI notes for settings feature

This commit is contained in:
2026-05-16 20:21:43 +02:00
parent 7fdef49b8c
commit 8cb7132fe0
2 changed files with 3 additions and 0 deletions
+1
View File
@@ -1,4 +1,5 @@
# CI Notes # CI Notes
- Run `npx prisma migrate deploy` in CI. - Run `npx prisma migrate deploy` in CI.
- Ensure database environment variables (e.g., DATABASE_URL) are set before running migrations.
- Ensure ADMIN_TOKEN is set in environment for admin APIs. - Ensure ADMIN_TOKEN is set in environment for admin APIs.
+2
View File
@@ -1,4 +1,6 @@
import type { PlaywrightTestConfig } from "@playwright/test"; import type { PlaywrightTestConfig } from "@playwright/test";
// NOTE: In CI, do not specify Playwright 'projects' by name — use the default project.
// Also ensure webServer.timeout is large enough in CI to allow the app to start (increase if needed).
const config: PlaywrightTestConfig = { const config: PlaywrightTestConfig = {
testDir: "./tests", testDir: "./tests",