How can I verify that a module has properly loaded its required dependencies? I've added ngAnimate to the module definition, but it doesn't appear to be functioning within the application when it runs. The environment I'm navigating is quite complex, so I need a definitive method for determining if ngAnimate has been successfully loaded or not.
angular.module('test', [
'ngAnimate',
'other',
'stuff'
]);