Jasmine Sprawdź, czy usługa została wywołana tylko raz
expect(yourSpy).toHaveBeenCalledTimes(1);
.toHaveBeenCalledWith("yourArgument")
expect(object.func.calls.count()).toBe(1);
Talented Tortoise