If I currently run moonwall test "D0103" then moonwall will waste time and CPU, going through every test file, add better ways to control which tests to run and provide good ways to skip or run tests.
Ex: moonwall test test-balances only run tests from test-balances dir, no need to traverse all dir in suites
Ex: moonwall test test-balances/test_specific_test.ts only run that specific test file
Ex: moonwall test test-balances/test_specific_test.ts::D0103 only run that specific describe suite
I like how pytest handles it, jest is also not bad.