Ho una funzione che vorrei testare che chiama due volte un metodo API esterno, utilizzando parametri diversi. Vorrei deridere questa API esterna con una spia Jasmine e restituire cose diverse in base ai parametri. C'è un modo per farlo in Jasmine? Il meglio che posso inventare è un hack con andCallFake:
var functionToTest = function() {
var userName = externalApi.get('abc');
var userId = externalApi.get('123');
};
describe('my fn', function() {
it('gets user name and ID', function() {
spyOn(externalApi, 'get').andCallFake(function(myParam) {
if (myParam == 'abc') {
return 'Jane';
} else if (myParam == '123') {
return 98765;
}
});
});
});
and.callFake
- jasmine.github.io/2.2/… >