I have an issue while upgrading Angular from 1.2.28 to 1.5.5. The code itself runs like a charm, but my tests began to fail with the following message.
Unknown provider: storeProvider <- store <- translateStorage
I use "a0-angular-storage": "0.0.15" as a storeProvider which provides 'store' via
angular.module('angular-storage.store', ['angular-storage.internalStore']) .provider('store', function() { ...}
[EDIT:] removed all the code and referred to a github repo where i could reproduce the problem. https://github.com/debrutal/js-hazzle
If i run the test(gulp test) with 1.2.28 angular is capable to inject store (language allways works, as it is just a defined variable within the application) into my tests. 1.5.5 is not able to do so. In karma i am loading the application before the tests and i am loading the bower dependencies before the application.
What am i missing? And why is it this way?