I am using Meteor 1.3.2.4 with practicalmeteor:mocha to run my unit and integration tests. Testing works as expected in normal test mode with both server and client-side test reporting to the browser as expected. My issue is that when I invoke meteor test
with the --full-app
parameter none of the full app test suites are loaded. I have tried naming them with all variations of <filename>.app-[test|spec]s?.js
to no avail. The test files all live within the /imports
directory.
Regardless of what I do the report always shows zero tests run on client and server. Adding console.log
in the test file also yields nothing so it's pretty clear the file is not being loaded. I created a test file within the /server
directory and it reported the test as run so it's definitely an issue with Meteor loading the specially named files as it's supposed to. Any ideas? I am stumped.