Lawrence
Results
12
comments of
Lawrence
trafficstars
I originally tried mocking $save and returning a $q promise, but then I realised restmod uses $then instead of then (without using $asPromise) so it did not work :'( I...
Just as an update to this, I ended up doing something along these lines: ``` var thenSpy = jasmine.createSpy(); spyOn(model, '$save').and.callFake(function () { return { $then: thenSpy }; }); thenSpy.calls.mostRecent().args[0]();...