Why?
Next.js is a super cool React framework, that gives you an amazing developer experience. In this episode, I'll show you how to test...
For further actions, you may consider blocking this person and/or reporting abuse
hello, great post !! there is not much information about testing in next js going around, I am having a bug if I use fetch instead of axios I guess it is because fetch is only available in the browser , i try using something like node fetch but I still get "fetch is not defined ", if you know any solution I'm all ears haha. Thank you
Hey Matias thanks for that :) this bug you're talking, do you mean in app or in tests?
In getServerSideProps when I use fetch and run the test it throws me "fetch is not defined", but only if I use fetch with axios the error does not appear
If you could send me the code or even better - a link to repo, I can take a look and try to help you out :)
I solve the problem using fetch-node thanks for answering anyway!
Hello Matias I am having the same issue trying to test GetServerSideProps, but keep getting the "fetch is not defined". How did you solve it exactly via fetch-node? I am failing so far... Thank You in advace!
Very handy! There isn’t a lot of content around testing with Next apps; this was very informative!
Glad I could help :)
You didnt specify where the test has to be located and with what name.
It doesn't really matter :) You can name it however you want and put it wherever you want :)
Hi @maciekgrzybek nice post!!
can we use MSW to test pages/api of next js application, I am using cypress I need idea how to mock pages/api in next js application.
Thank you
Hey, thanks for that :) Not sure if I understand you correctly, but MSW, has something that's called setupWorker - which is similar to mock server, but can be used in the browser. Maybe that will help?