## Summary Add small test coverage for create/update/delete platform link routes in `apps/backend/src/routes/profiles.ts`. ## Tasks - [ ] create tests verifying POST `/api/profiles/me/links` fails with invalid body and succeeds with valid body calling `createLinkSchema`. - [ ] add test for PUT `/api/profiles/me/links/:id` when link not found returns 404. - [ ] add test for DELETE `/api/profiles/me/links/:id` when existing link deletion returns 204. ## Acceptance Criteria - [ ] total 3+ test cases added and passing. - [ ] this covers safeParse validation and typed responses.
Summary
Add small test coverage for create/update/delete platform link routes in
apps/backend/src/routes/profiles.ts.Tasks
/api/profiles/me/linksfails with invalid body and succeeds with valid body callingcreateLinkSchema./api/profiles/me/links/:idwhen link not found returns 404./api/profiles/me/links/:idwhen existing link deletion returns 204.Acceptance Criteria