Mocking `getInitialProps` Responses
mattfwood opened this issue · 2 comments
mattfwood commented
Is it possible to mock / stub requests sent from getInitialProps
or getServerSideProps
? I've tried using cy.route
and cy.route2
but I don't think it works since it's expecting to mock through the network layer in the browser.
Not sure if there's a way to do this or if there's a recommended practice? If there is one, I'd be glad to add it as an example in this repo.
Thanks!
kylemh commented
I have a workaround for you.
fibonacid commented
Apparently you can run next as a cypress plugin to mock server side network calls
https://glebbahmutov.com/blog/mock-network-from-server/