There should be a way to run only specific tests.
An interface for this could be:
truffle test - run all tests
truffle test testname - run specific test, where testname is a file in the test/ folder called testname.coffee
This would be very useful. Additionally it would be nice to be able to select different tests to run in sequence i.e.
truffle test contract1 contract2 contract3
This has partially been added, and you'll see it in the latest release coming today.
$ truffle test ./path/to/test/file
Most helpful comment
This has partially been added, and you'll see it in the latest release coming today.