You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The testModule binding for A should override the one from realModule if testModule is installed using scope.installTestModules(testModule). The order used to install the modules should not matter.
Right now it does not happen:
scope.installModule(realModule);
scope.installTestModules(testModule); // does not override
The text was updated successfully, but these errors were encountered:
If I have a testModule:
And a real module:
The
testModule
binding forA
should override the one fromrealModule
iftestModule
is installed usingscope.installTestModules(testModule)
. The order used to install the modules should not matter.Right now it does not happen:
The text was updated successfully, but these errors were encountered: