A set of extensions to cypress.io that allows automatic recording and playback of APIs
npm install cypress-http-auto-mock

This repository is a copy of
Integrating this tool into your web application involves a few steps:
1. Add the cypress-http-auto-mock to your project:
``sh`
npm install --save cypress-http-auto-mock
1. Add the cypress web hooks to your application.
`js`
import installCypressHooks from 'cypress-http-auto-mock/include-in-webapp';
installCypressHooks();
Another option to do the same thing would be to include the following code in your HTML instead:
` html