This repository was archived by the owner on Jul 6, 2019. It is now read-only.

Description
if you add jasmine: true to .jshintrc, you won't have to do this at the top of all the specs:
/*global describe, it, expect, beforeEach, afterEach, module, inject */
probably just this
/*global module, inject */
also note the lack of the first space is important with defining globals. just offering this tip based on a cursory view.