I've spent quite a while banging my head against trying to override injected constants provided to modules' config functions. My code looks something like
common.constant('I18n', <provided by server, comes up as undefined in tests>);
common.config(['I18n', function(I18n) {
console.log("common I18n " + I18n)
}]);
Our usual way to guarantee what I18n is being injected in our unit tests is by doing
module(function($provide) {
$provide.constant('I18n', <mocks>);
});
This works fine for my controllers, but it seems like the config function doesn't look at what's $provide
d outside of the module. Instead of getting the mocked values, it gets the earlier value defined as part of the module. (Undefined in the case of our tests; in the below plunker, 'foo'.)
A working plunker is below (look at the console); does anyone know what I'm doing wrong?
I think the fundamental issue is you are defining the constants right before the config block, so each time the module is loaded, whatever mock value that may exist will be overridden. My suggestion would be to separate out the constants and config into separate modules.