I am a new bee to Angular JS and was trying to make something out of it in a proper TDD way, but while testing i am getting this error:
Injector alrea
If you are mixing calls to module('someApp') and inject($someDependency) you will get this error.
module('someApp')
inject($someDependency)
All your calls to module('someApp') must occur before your calls to inject($someDependency).