From d83a88da66e505a317375cde7ac9e2e2ee1beaee Mon Sep 17 00:00:00 2001 From: jheyworth <8269695+jheyworth@users.noreply.github.com> Date: Fri, 16 Jan 2026 12:09:19 +0000 Subject: [PATCH] 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 --- docs/how-to/workflows/run-automate.md | 2 +- docs/reference/tea/configuration.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/how-to/workflows/run-automate.md b/docs/how-to/workflows/run-automate.md index 8c5b9e78..0b48f8f1 100644 --- a/docs/how-to/workflows/run-automate.md +++ b/docs/how-to/workflows/run-automate.md @@ -83,7 +83,7 @@ If you're using TEA Solo or don't have BMad artifacts: **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 ``` diff --git a/docs/reference/tea/configuration.md b/docs/reference/tea/configuration.md index ba6e2e51..6acd23e5 100644 --- a/docs/reference/tea/configuration.md +++ b/docs/reference/tea/configuration.md @@ -293,7 +293,7 @@ TEA workflows may use environment variables for test configuration. **Playwright:** ```bash # .env -BASE_URL=https://todomvc.com/examples/react/ +BASE_URL=https://todomvc.com/examples/react/dist/ API_BASE_URL=https://api.example.com TEST_USER_EMAIL=test@example.com TEST_USER_PASSWORD=password123