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 13:59:27 -0700
commit717f24feb43cb71538a7c07e4aa013c916640006 (patch)
treeace42af0d8c793338f9d605da532536cb54f43d9 /test/ngMock/angular-mocksSpec.js
parent45f9f62367221b2aa097ba1d87d744e50140ddc7 (diff)
downloadangular.js-717f24feb43cb71538a7c07e4aa013c916640006.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 3f82ac57..4e17dfb2 100644
--- a/test/ngMock/angular-mocksSpec.js
+++ b/test/ngMock/angular-mocksSpec.js
@@ -377,11 +377,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);
- });
});