practicalmeteor / meteor-mocha

Depreciated - Write meteor package tests with mocha and run them in the browser or from the command line with spacejam.
https://atmospherejs.com/practicalmeteor/mocha
Other
41 stars 13 forks source link

Only run tests that have changed? #60

Open noahsw opened 8 years ago

noahsw commented 8 years ago

I'm using this as my testing command: meteor test --driver-package practicalmeteor:mocha.

This works great in the sense that when I change a file, it runs my tests. However, it runs all my tests. It'd be great if this could just run tests that have changed. Or tests that have imported files that have changed.

Thx in advance!

dovrosenberg commented 8 years ago

This would be a great feature to have. In the meantime, I've created a script to change some/all of my filenames between .skiptest.js and .test.js to be able to better focus on the files I'm working on. Not conducive to group projects or CI, though.