is it possible to use Jasmine unit testing framework\'s spyon method upon a classes private methods?
The documentation gives this example but can this be flexivble for a
Just add a generic parameter < any> to the spyon() function:
spyOn(fakePerson, 'sayHello');
It works on perfectly !