Skip to content
thinq4yourself edited this page Oct 15, 2014 · 1 revision

NOTE: All links below go to specific Test Harness documentation. We highly recommend you understand these tools and methods before starting to develop and test.


We use Karma, a spectacular test suite for javascript. The we sprinkle in some Jasmine. Sometimes, we grab a Mocha latte. Since we rely on Angular for HopStack, this seems to be a solid approach.

Get to know your Karma

Thanks to Codio, Grunt, and Yeoman, our test suite is harnessed and built for test driven development.

$ npm karma install you karma goodness

$ yo karma generates a skeleton test harness for Angular

$ grunt test will run all tests we created in ./test

$ karma is the cli to directly interact with Karma (see docs here)

Clone this wiki locally