aboutsummaryrefslogtreecommitdiffstats
path: root/test/AngularSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/AngularSpec.js')
-rw-r--r--test/AngularSpec.js22
1 files changed, 0 insertions, 22 deletions
diff --git a/test/AngularSpec.js b/test/AngularSpec.js
index de029623..790f605a 100644
--- a/test/AngularSpec.js
+++ b/test/AngularSpec.js
@@ -877,26 +877,4 @@ describe('angular', function() {
}));
});
- describe('noConflict', function() {
- var globalAngular;
- beforeEach(function() {
- globalAngular = angular;
- });
-
- afterEach(function() {
- angular = globalAngular;
- });
-
- it('should return angular', function() {
- var a = angular.noConflict();
- expect(a).toBe(globalAngular);
- });
-
- it('should restore original angular', function() {
- var a = angular.noConflict();
- expect(angular).toBeUndefined();
- });
-
- });
-
});