Why Write Tests?
Hello ๐ techies,
This week's article will be addressing a very important, essential and one of the most underrated sections in the tree of software development, which is Testing.
With my little observation most developers especially junior develop...
chryzcode.hashnode.dev2 min read
Miki Szeles
Everything related to test automation
Great writing CODE. I would also add writing unit tests will provide a safety net for refactoring, which is a must for clean code. It is highly advised to use TDD. By writing API tests you can test the business logic of your applucation. By writing e2e tests you can test the functionality of your software. By writing performance and load test you can make sure your application is performant enough to handle the user load.