How do we clear the spy in a jasmine test suite programmatically? Thanks.
beforeEach(function() { spyOn($, \"ajax\").andCallFake(function(params){ }) })
just set the spy method to null
mockedService.spiedMethod = null;