From 7b68d1a326c30b201b775cd66b9d31d51a40d4dc Mon Sep 17 00:00:00 2001 From: jheyworth <8269695+jheyworth@users.noreply.github.com> Date: Fri, 16 Jan 2026 11:12:20 +0000 Subject: [PATCH 1/2] Fix TodoMVC example URL to include /dist/ path Updated all references to TodoMVC URL from https://todomvc.com/examples/react/ to https://todomvc.com/examples/react/dist/ for correct working example. Co-Authored-By: Claude Sonnet 4.5 --- docs/tutorials/getting-started/tea-lite-quickstart.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/tutorials/getting-started/tea-lite-quickstart.md b/docs/tutorials/getting-started/tea-lite-quickstart.md index db13c0a4..2c62bcb2 100644 --- a/docs/tutorials/getting-started/tea-lite-quickstart.md +++ b/docs/tutorials/getting-started/tea-lite-quickstart.md @@ -18,7 +18,7 @@ By the end of this 30-minute tutorial, you'll have: - Node.js installed (v18 or later) - 30 minutes of focused time -- We'll use TodoMVC () as our demo app +- We'll use TodoMVC () as our demo app ## TEA Approaches Explained @@ -36,7 +36,7 @@ This tutorial focuses on **TEA Lite** - the fastest way to see TEA in action. We'll test TodoMVC, a standard demo app used across testing documentation. -**Demo App:** +**Demo App:** No installation needed - TodoMVC runs in your browser. Open the link above and: 1. Add a few todos (type and press Enter) @@ -171,7 +171,7 @@ In your chat with TEA, run: ``` **Q: What are you testing?** -A: "TodoMVC React app at - focus on the test design we just created" +A: "TodoMVC React app at - focus on the test design we just created" **Q: Reference existing docs?** A: "Yes, use test-design-epic-1.md" @@ -187,7 +187,7 @@ import { test, expect } from '@playwright/test'; test.describe('TodoMVC - Core Functionality', () => { test.beforeEach(async ({ page }) => { - await page.goto('https://todomvc.com/examples/react/'); + await page.goto('https://todomvc.com/examples/react/dist/'); }); test('should create a new todo', async ({ page }) => { 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 2/2] 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