How do you test your software products?

Sergei Nazarov
2 replies
Hello, friends! Could you please give me approaches or software you are using while testing your products? Are you doing it manually or are you writing automated tests?

Replies

Sergei Nazarov
From my side I would say that I usually write checklist of the tests and execute it manually.
Cris Mihalache
I write unit, integration, and end-to-end tests. For the Node.JS ecosystem, check out Mocha (https://mochajs.org/) and Chai (https://www.chaijs.com/). Ideally you should automate test execution on git push, or as a part of your deployment process.