sprint planning

This commit is contained in:
Brian Madison
2025-10-21 08:24:02 -05:00
parent b8db0806ed
commit 419043e704
29 changed files with 1919 additions and 39 deletions

View File

@@ -664,7 +664,7 @@ npm run test:e2e -- user-authentication.spec.ts --debug
2. Run failing tests to confirm RED phase: `npm run test:e2e`
3. Begin implementation using checklist as guide
4. Share progress in daily standup
5. When all tests pass, run `bmad sm story-approved` to move story to DONE
5. When all tests pass, run `bmad sm story-done` to move story to DONE
```

View File

@@ -296,7 +296,7 @@ test('should do something', async ({ {fixtureName} }) => {
4. **Work one test at a time** (red → green for each)
5. **Share progress** in daily standup
6. **When all tests pass**, refactor code for quality
7. **When refactoring complete**, run `bmad sm story-approved` to move story to DONE
7. **When refactoring complete**, run `bmad sm story-done` to move story to DONE
---

View File

@@ -786,7 +786,7 @@ Use for: Alpha/beta releases, internal tools, proof-of-concept
- `bmad tea *automate` - Expand regression suite based on gaps
- `bmad tea *nfr-assess` - Validate non-functional requirements (for gate)
- `bmad tea *test-review` - Review test quality issues flagged by trace
- `bmad sm story-approved` - Mark story as complete (triggers gate)
- `bmad sm story-done` - Mark story as complete (triggers gate)
---