I'm trying to setup an e2e test suite in angular, and need to return canned 
responses using $httpBackend. It would be nice if I could just return a 
file content, e.g.

  $httpBackend.whenPOST('/phones').respond(function(method, url, data) {
    return $http.get("/responses/phones.js");
  });

but it didn't work, guess angular doesn't support returning promises from 
$httpBackend ?

One way I could do it is to reference js files with responses on app load, 
and assign file's content to variables, but it would be much nicer to be 
able to load data on demand.

-- 
You received this message because you are subscribed to the Google Groups 
"AngularJS" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/angular.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to