Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/morgynkass/unit-testing

This is my introduction to Unit Testing.
https://github.com/morgynkass/unit-testing

javascript nodejs vitest

Last synced: 8 days ago
JSON representation

This is my introduction to Unit Testing.

Awesome Lists containing this project

README

        

This is my introduction to Unit Testing and TDD.

TDD is a concept that makes development more efficient and less prone to unknown errors.
In TDD you write failing unit tests before you write your actual code to make sure you have a functioning test. This allows you to write refactor your code later on and ensures less mistakes will arise.
When using unit tests you can organize your code better and diagnose problems faster.
Overall testing your code as you create it is both efficient and can speed things up.