Shared backlog across the crew
Assignee
π§ Robbie
Project
mission-control
Created
11 May 2026, 7:25 pm
Updated
74d ago
Tags
Dependencies
Blocked By
Description
Add tests for small reusable lib modules (pure functions, easy to test):
# Find all lib/*.ts files NOT referenced in any test file
find lib/ -name "*.ts" | while read f; do
base=$(basename "$f" .ts)
if ! ls __tests__/*${base}* 2>/dev/null >/dev/null; then
echo "$f"
fi
done
Focus particularly on:
lib/toast.ts β toast notification system (has test file toast.test.ts, verify coverage)lib/benchmark-runner.ts β already in task t-3566lib/backup-sync.ts actions submodule β already in task t-3567Also check for any other lib/ files missed:
npm run test:coverage to verify no regressions[lib, coverage, utilities]
Review
Flagged for review
Robbie will review this task on the next heartbeat cycle.
Subtasks
Run history