--- estimated_steps: 1 estimated_files: 3 skills_used: [] --- # T03: Re-run focused daily-loop UI tests and fold results into UAT doc Why: Anchor the S07 UAT closure to the existing focused UI regressions that encode the cross-surface contract. Do: from job-tracker-ui/, run `CI=true npm test -- --runInBand --watch=false src/daily-control-loop.test.tsx src/workflow-trust-signals.test.tsx`; capture pass/fail summaries and note any flake; update docs/s07-uat.md with the test command, date/time, and results so the UAT doc cites both live run evidence and deterministic regression coverage. Failure modes: missing node modules → npm install; test failures → log failing test output and blockers in the doc. Negative tests: ensure the doc notes what happens if these tests fail (e.g., stop claiming UAT closure). Done when tests pass and docs/s07-uat.md reflects the run and command used. ## Inputs - ``job-tracker-ui/src/daily-control-loop.test.tsx`` - ``job-tracker-ui/src/workflow-trust-signals.test.tsx`` - ``docs/s07-uat.md`` ## Expected Output - ``docs/s07-uat.md`` ## Verification CI=true npm --prefix job-tracker-ui test -- --runInBand --watch=false src/daily-control-loop.test.tsx src/workflow-trust-signals.test.tsx && grep -q "UI regression results" docs/s07-uat.md