Files
clawd/dashboard/habits.json
Echo d36685c66b Add integration tests for habit tracker
- Created comprehensive test file (dashboard/test_habits_integration.py)
- Validates complete habit lifecycle: create, check, streak calculation, delete
- Added tests for broken streaks and weekly habits
- All 16 test suites passed (200+ individual tests)
2026-02-10 13:52:14 +00:00

14 lines
258 B
JSON

{
"habits": [
{
"id": "habit-test1",
"name": "Test Habit",
"frequency": "daily",
"createdAt": "2026-02-01T10:00:00Z",
"completions": [
"2026-02-10"
]
}
],
"lastUpdated": "2026-02-10T13:51:07.626599"
}