A simple implementation of JS testing framework, mostly inspired from the Jest framework
The purpose of creating this mini-testing framework is for educational purpose and self-exploration, so we focus on some simple use cases only
Those are the milestones that we will go through step by step to build a JS testing framework from scratch
Create the basic config and setup the example to run the command to read the config file
Search all the test files with some features like include or exclude
Read and run all the tests in parallel
Add the assertion in the frameworks
Isolate the run of test cases
Implement the Node resolution
Support for ES6 syntax and babel transform