Update story 28 to read TODOs from story file instead of tests/todo/

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Dave
2026-02-19 15:08:20 +00:00
parent 8973d22afc
commit 644644d5b3

View File

@@ -4,11 +4,11 @@
As a user, I want the UI to show the remaining test TODOs for the current story, so I can track which Acceptance Criteria are still untested. As a user, I want the UI to show the remaining test TODOs for the current story, so I can track which Acceptance Criteria are still untested.
## Acceptance Criteria ## Acceptance Criteria
- The UI lists remaining TODOs from `tests/todo/story-XX.todo` for the active story. - The UI lists unchecked acceptance criteria (`- [ ]`) from the current story file.
- Each TODO is displayed as its full comment text. - Each TODO is displayed as its full text.
- When a TODO line is removed from the file, it disappears from the UI. - When a criterion is checked off in the story file (`- [x]`), it disappears from the TODO list.
- If no TODOs remain, the UI clearly indicates completion. - If no unchecked criteria remain, the UI clearly indicates completion.
## Out of Scope ## Out of Scope
- Editing TODOs from the UI. - Editing or checking off criteria from the UI.
- Automatically generating TODO files. - Automatically generating or modifying story files.