Finish and Verify
15 min read
Run the Main Workflow
Run the Main Workflow
Test the application as a user would use it.
Start with the existing board and check these actions in order:
- open the Add Task modal
- close it without submitting
- create a task in To Do
- create another task directly in In Progress
- drag a task into Done
- delete a task
- refresh the page
After each action, look at both the cards and the column counts.
The expected pattern is:
action
↓
tasks changes
↓
renderTasks()
↓
board and counts match state
After the refresh, the saved state should produce the same board you had before reloading.
Checkpoint
Complete the entire sequence without the board becoming inconsistent.
If one step fails, fix that step before continuing. Do not add new features while debugging the existing flow.