Location
app/profile/page.tsx
Description
app/dashboard/__tests__/ and app/streams/__tests__/ both have test coverage for their respective page components; app/profile/page.tsx has no corresponding test file at all.
Why it matters
This page has real conditional logic (connected/disconnected states, copy-to-clipboard, navigation links) with zero regression protection, unlike comparable pages in the same app.
Suggested fix
Add app/profile/__tests__/page.test.tsx covering the connected and disconnected render states at minimum.
Acceptance criteria
Location
app/profile/page.tsxDescription
app/dashboard/__tests__/andapp/streams/__tests__/both have test coverage for their respective page components;app/profile/page.tsxhas no corresponding test file at all.Why it matters
This page has real conditional logic (connected/disconnected states, copy-to-clipboard, navigation links) with zero regression protection, unlike comparable pages in the same app.
Suggested fix
Add
app/profile/__tests__/page.test.tsxcovering the connected and disconnected render states at minimum.Acceptance criteria