The problem is the URL string — you used a Cyrillic р instead of a normal ASCII p in http.
p
http
Change this:
fetch('httр://localhost:3000/api/test')
to this:
fetch('http://localhost:3000/api/test')
(or just fetch('/api/test') inside Next.js).
fetch('/api/test')