My usual test case looks like
it(\"should send get request\", inject(function(someServices) { //some test }));
And Jasmine 2.0 async
To add to the answer of @Scott Boring and to the comment of @WhiteAngel who mentionned that the code inside inject was never called.
This worked for me:
it("should send get request", function(done) { inject(function(someServices) { //some async test done(); })(); });