I\'ve defined the following service in my angular app :
services.factory(\'MyService\', [\'Restangular\', function (Restangular) { return {
I had the same problem as you guys. My solution was to add a '/' at the start of the URL-parameter of the .expectGET. Using your example:
$httpBackend.expectGET("/internalapi/quotes").respond({ hello: 'world'})
Best of luck