Reputation: 121
I always run tests in this way: raco test filename.rkt. Is there a built-in possibility to run all my test modules (module+ test ...) in folder?
Upvotes: 0
Views: 144
Reputation: 52354
raco test directory/
recursively runs tests on all .rkt files in the given directory and its subdirectories.
You can use raco test .
for the current working directory.
Upvotes: 2