Call to GET http://127.0.0.1:49475/ not handled
libasoles opened this issue · 1 comments
Describe the bug
After a couple of request interceptions, I get this in jest:
console.warn
[MSW] Warning: captured a request without a matching request handler:
• GET http://127.0.0.1:49475/
If you still wish to intercept this unhandled request, please create a request handler for it.
Read more: https://mswjs.io/docs/getting-started/mocks
I guess 49475 is the port that msw decides to work with. But I don't have any calls without procedures, and that URL seems to be a call to the server but without any procedure at all. This is impossible in my codebase, because I only wrote a couple of procedures, without room for errors.
To Reproduce
Steps to reproduce the behavior:
Maybe write a test covering a scenario of re-fetch. After the re-fetch, this fails.
To be clear, I'm using httpLink and not httpBatchLink, because I know batch is not supported yet.
Expected behavior
That "empty" call shouldn't be performed.
Versions
typescript: v4.9.5
tRPC: v10.21.1-alpha.2
msw: v1.2.1
Nevermind. This appears whenever I write a console.log inside a handler. Very strange. But I don't think it's related to this library 🤷♂️