Long story short, I have a meteor app passing in a continuous-integration pipeline which runs every tests before deploying. My tests run with chimp and I was installing chimp globally on my CI environment in each build with the latest version before running the tests.
recently, chimp made a somewhat major update which resulted in my chimp execution running 1..0 tests. After finding out it was because of the version of chimp, I made the change to the installation of chimp to be local and locked at a certain version.
The problem is that my pipeline was passing because hey, 0 tests passing is still 0 tests failing..!
I'm trying to make chimp fail if it runs no tests at all. How would be a good way to do it?
I tried greping the output and matching it to '1..0' resulting in a exit /b 1 status with no luck. The best solution would involve only the chimp command.
Thanks to anyone that could give me some hint on that.