aboutsummaryrefslogtreecommitdiffstats
path: root/test/loaderSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/loaderSpec.js')
-rw-r--r--test/loaderSpec.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/loaderSpec.js b/test/loaderSpec.js
index 2a564115..816e0a10 100644
--- a/test/loaderSpec.js
+++ b/test/loaderSpec.js
@@ -78,4 +78,8 @@ describe('module loader', function() {
window.angular.module('hasOwnProperty', []);
}).toThrowMinErr('ng','badname', "hasOwnProperty is not a valid module name");
});
+
+ it('should expose `$$minErr` on the `angular` object', function() {
+ expect(window.angular.$$minErr).toEqual(jasmine.any(Function));
+ })
});