![]() |
|
Best Practices for Automating End-to-End Testing in SaaS Applications - Printable Version +- General Forum (https://generalforum.net) +-- Forum: Category (https://generalforum.net/Forum-Category) +--- Forum: Science & Technology (https://generalforum.net/Forum-Science-Technology) +--- Thread: Best Practices for Automating End-to-End Testing in SaaS Applications (/Thread-Best-Practices-for-Automating-End-to-End-Testing-in-SaaS-Applications) |
Best Practices for Automating End-to-End Testing in SaaS Applications - Alok - 11-04-2025 [attachment=42] Hi all, I’m working on a SaaS architecture that consists of microservices, APIs, a frontend in Next.js + TypeScript, and a PostgreSQL backend. We’re moving away from storing tokens in local storage and instead using Http Only cookies based frontend. We’re also migrating to automated testing — not just unit/integration tests, but full workflow validation. In this context, I’ve found that end-to-end testing is the key piece to tie everything together: validating the UI, API interactions, database state and external dependencies in a single workflow. I came across a robust guide on this topic (link at the end) and would like to share some lessons + invite feedback from folks who have done this. Key considerations I’ve encountered:
Thanks for any insights! |