I have encountered the following type of unittest setup several times now: ``` js describe('', function() { // ... beforeEach(module('myApp')); beforeEach(module('ui.router')); // ... }); ``` This typically indicates that the module is not setup correctly. The `myApp` module should have `ui.router` as a dependency instead. It should be allowed to add exceptions (e.g. [`ngMaterial-mock`](https://github.com/angular/material/blob/master/test/angular-material-mocks.js) or [`ngCordovaMocks`](https://github.com/driftyco/ng-cordova/tree/master/src/mocks))