Back end devs, how do you practice back end work without making a front end? Or is that not an option?

Reply to this note

Please Login to reply.

Discussion

You can run tests that feed sample requests into your backend API without having a real frontend service. Same with frontend. You can use Cypress to feed API responses to your app from a mock backend.

You just need to come up with the kind of data the frontend would want and write the test cases with those in mind.

Cli