This should work; I ran into the same problem when I updated to Jasmine 2.0
it("should send get request", function(done) {
inject(function(someServices) {
//some async test
done();
})(); // function returned by 'inject' has to be invoked
});