Remove addCustomEqualityTester and addMatchers from global

These functions are available on the jasmine namespace
This commit is contained in:
Sheel Choksi
2013-10-24 13:57:09 -07:00
parent ab0b2b783c
commit a3424ea265
2 changed files with 0 additions and 8 deletions

View File

@@ -69,10 +69,6 @@
return env.spyOn(obj, methodName);
},
addCustomEqualityTester: function(tester) {
env.addCustomEqualityTester(tester);
},
jsApiReporter: new jasmine.JsApiReporter({
timer: new jasmine.Timer()
})

View File

@@ -39,10 +39,6 @@
return env.pending();
},
addMatchers: function(matchers) {
return env.addMatchers(matchers);
},
spyOn: function(obj, methodName) {
return env.spyOn(obj, methodName);
},