Fix remaining TodoMVC URL references in documentation
Updated 2 additional files to use the correct /dist/ path: - docs/how-to/workflows/run-automate.md: Standalone mode example - docs/reference/tea/configuration.md: Playwright BASE_URL example Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
parent
7b68d1a326
commit
d83a88da66
|
|
@ -83,7 +83,7 @@ If you're using TEA Solo or don't have BMad artifacts:
|
||||||
|
|
||||||
**What are you testing?**
|
**What are you testing?**
|
||||||
```
|
```
|
||||||
TodoMVC React application at https://todomvc.com/examples/react/
|
TodoMVC React application at https://todomvc.com/examples/react/dist/
|
||||||
Features: Create todos, mark as complete, filter by status, delete todos
|
Features: Create todos, mark as complete, filter by status, delete todos
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -293,7 +293,7 @@ TEA workflows may use environment variables for test configuration.
|
||||||
**Playwright:**
|
**Playwright:**
|
||||||
```bash
|
```bash
|
||||||
# .env
|
# .env
|
||||||
BASE_URL=https://todomvc.com/examples/react/
|
BASE_URL=https://todomvc.com/examples/react/dist/
|
||||||
API_BASE_URL=https://api.example.com
|
API_BASE_URL=https://api.example.com
|
||||||
TEST_USER_EMAIL=test@example.com
|
TEST_USER_EMAIL=test@example.com
|
||||||
TEST_USER_PASSWORD=password123
|
TEST_USER_PASSWORD=password123
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue