Skip to content

Commit 5881790

Browse files
Merge pull request bmad-code-org#1345 from jheyworth/fix-todomvc-url
Fix TodoMVC example URL to include /dist/ path
2 parents 7cd4926 + d83a88d commit 5881790

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/how-to/workflows/run-automate.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ If you're using TEA Solo or don't have BMad artifacts:
8383

8484
**What are you testing?**
8585
```
86-
TodoMVC React application at https://todomvc.com/examples/react/
86+
TodoMVC React application at https://todomvc.com/examples/react/dist/
8787
Features: Create todos, mark as complete, filter by status, delete todos
8888
```
8989

docs/reference/tea/configuration.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ TEA workflows may use environment variables for test configuration.
293293
**Playwright:**
294294
```bash
295295
# .env
296-
BASE_URL=https://todomvc.com/examples/react/
296+
BASE_URL=https://todomvc.com/examples/react/dist/
297297
API_BASE_URL=https://api.example.com
298298
TEST_USER_EMAIL=test@example.com
299299
TEST_USER_PASSWORD=password123

docs/tutorials/getting-started/tea-lite-quickstart.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ By the end of this 30-minute tutorial, you'll have:
1818

1919
- Node.js installed (v18 or later)
2020
- 30 minutes of focused time
21-
- We'll use TodoMVC (<https://todomvc.com/examples/react/>) as our demo app
21+
- We'll use TodoMVC (<https://todomvc.com/examples/react/dist/>) as our demo app
2222

2323
## TEA Approaches Explained
2424

@@ -36,7 +36,7 @@ This tutorial focuses on **TEA Lite** - the fastest way to see TEA in action.
3636

3737
We'll test TodoMVC, a standard demo app used across testing documentation.
3838

39-
**Demo App:** <https://todomvc.com/examples/react/>
39+
**Demo App:** <https://todomvc.com/examples/react/dist/>
4040

4141
No installation needed - TodoMVC runs in your browser. Open the link above and:
4242
1. Add a few todos (type and press Enter)
@@ -171,7 +171,7 @@ In your chat with TEA, run:
171171
```
172172

173173
**Q: What are you testing?**
174-
A: "TodoMVC React app at <https://todomvc.com/examples/react/> - focus on the test design we just created"
174+
A: "TodoMVC React app at <https://todomvc.com/examples/react/dist/> - focus on the test design we just created"
175175

176176
**Q: Reference existing docs?**
177177
A: "Yes, use test-design-epic-1.md"
@@ -187,7 +187,7 @@ import { test, expect } from '@playwright/test';
187187

188188
test.describe('TodoMVC - Core Functionality', () => {
189189
test.beforeEach(async ({ page }) => {
190-
await page.goto('https://todomvc.com/examples/react/');
190+
await page.goto('https://todomvc.com/examples/react/dist/');
191191
});
192192

193193
test('should create a new todo', async ({ page }) => {

0 commit comments

Comments
 (0)