I've been trying to run through the example given here on Cloud9: http://www.meteortesting.com/chapter/velocity
So when I get to the part about changing a working test to a broken test in sampleClientTest.js I run into a problem where Velocity does not run the client side tests.
I can add server side tests all day and that works fine (unless I specify ROOT_URL recommended by the answer to this question which breaks the server side and the client side). I've also verified that it's not an issue with browser policy as suggested by this question.
I get the following error in the browser console:
Blocked loading mixed active content "http://0.0.0.0:5000/?mocha=true&lastModified=1428993591620"[Learn More] blaze.js:383:0
What I'm not clear about is what settings I need to use to get Cloud9 and Mocha to play nice together so that the IP mocha uses is the right one (or at least the correct Cloud9 url which is in the form:
https://<appname>-<username>.c9.io
Any tips? Am I just not playing with the correct parameters of meteor/velocity to get it running?