Nikos
Nikos
Cypress support seems an order of magnitude more difficult then jest etc
Check out this for ideas: https://serverless-stack.com
You can completely separate the frontend display logic from api calls. If you use typescript you can create AWS or firebase interface adaptors for API methods.
Link: https://github.com/AnomalyInnovations/serverless-stack-com/issues/145
If you want I can propose an interface to get started?
As bare min: (void would return smth diff) ```ts /** * Authentication interface * */ export interface IAuthentication { /** * Logs out the user * @returns {Promise} */ logout:...
Concrete impl for AWS would be smth like https://github.com/AnomalyInnovations/serverless-stack-demo-client/blob/master/src/libs/awsLib.js
Even Azure could be a consideration as it has easier functions than AWS, ie can group per app, and simpler http endpoint wiring. Although serverless framework abstracts this for AWS...
Feel free to add a PR
It could be a lot of work to keep this uptodate with redux.