summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ci-design.md6
-rw-r--r--docs/llm-e2e-design.md2
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/ci-design.md b/docs/ci-design.md
index 7fb8db2..54f2b6f 100644
--- a/docs/ci-design.md
+++ b/docs/ci-design.md
@@ -142,8 +142,8 @@ No running server process needed — integration tests start their own in-proces
Runs the Playwright smoke suite against a real running server with test media.
```
-# Start server with test database and testmedia
-MEDIA_ROOT=./testmedia SECURE_COOKIES=false DB_PATH=/tmp/player-e2e-ci.db \
+# Start server with test database and testdata/media
+MEDIA_ROOT=./testdata/media SECURE_COOKIES=false DB_PATH=/tmp/player-e2e-ci.db \
./player &
# Wait for server readiness (done inside the Playwright globalSetup hook)
@@ -429,7 +429,7 @@ bumping Flutter locally. This is a one-line change.
The Playwright suite is configured with `retries: 1` on CI and generous timeouts
(15 s navigation, 10 s action). Flakiness can still occur if the Go server takes
-longer than expected to start or if testmedia scanning is slow.
+longer than expected to start or if testdata/media scanning is slow.
**Mitigation:** The Playwright `globalSetup` hook already waits for the server to
respond before tests run (`waitForServer` helper in `tests/helpers/server.ts`). The
diff --git a/docs/llm-e2e-design.md b/docs/llm-e2e-design.md
index 52d5d37..236fe33 100644
--- a/docs/llm-e2e-design.md
+++ b/docs/llm-e2e-design.md
@@ -334,7 +334,7 @@ position.
**Goal:** Verify that a file uploaded via the admin API appears in the web UI
media grid.
-**Precondition:** Server running, admin account exists, testmedia fixture file
+**Precondition:** Server running, admin account exists, testdata/media fixture file
available.
**Steps (abbreviated):**