aboutsummaryrefslogtreecommitdiffstats
path: root/test/ngMock/angular-mocksSpec.js
diff options
context:
space:
mode:
authorIgor Minar2013-07-22 13:59:21 -0700
committerIgor Minar2013-07-22 14:01:38 -0700
commitacb6b75fe9968f0ccdb44353258c05cb747961ca (patch)
tree654ce34292215d6195274e84de90ffe1943b248c /test/ngMock/angular-mocksSpec.js
parent683fd713c41eaf5da8bfbf53b574e0176c18c518 (diff)
downloadangular.js-acb6b75fe9968f0ccdb44353258c05cb747961ca.tar.bz2
chore(dump): remove dead code
This code is not being used any more and the test is now failing due to Karma changes. Karma used to expose window.dump but that changed recently and that's why our build is now failing. I'm removing the code and test, but we still need to figure out how to route window.dump through angular.mock.dump, but that will have to be a separate commit.
Diffstat (limited to 'test/ngMock/angular-mocksSpec.js')
-rw-r--r--test/ngMock/angular-mocksSpec.js5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/ngMock/angular-mocksSpec.js b/test/ngMock/angular-mocksSpec.js
index 5992846d..70e42fb5 100644
--- a/test/ngMock/angular-mocksSpec.js
+++ b/test/ngMock/angular-mocksSpec.js
@@ -353,11 +353,6 @@ describe('ngMock', function() {
expect(d($rootScope)).toMatch(/Scope\(.*\): \{/);
expect(d($rootScope)).toMatch(/{"abc":"123"}/);
}));
-
-
- it('should be published on window', function(){
- expect(window.dump instanceof Function).toBe(true);
- });
});