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 tests in the tests/
folder. Unlike Rails, which uses a folder named test
for this purpose, Meteor uses the plural tests
for this folder name.
Assets stored in a folder named "tests" will be completely ignored by Meteor; these assets will not be loaded on the client or server.
Ironically, I was tipped off by someone having the opposite issue who wants their tests loaded by the Meteor client.