Is there a place where my tests can live without being run by Meteor?
I just started my first Meteor project, and began by writing unit tests with Mocha
Place your test files in tests
folder and you should be fine. If your application is such that you have multiple files nested in server
or client
folder, you can replicate similar folder structure within your tests/client
or tests/server
directory. Not a rule but I think it helps for maintenance and I have had experience of spending hours debugging missing class error which was simply resolved by organising file structure in test folder.