Move equalArray into expect.js

This commit is contained in:
Tom Payne
2013-03-15 01:11:25 +01:00
parent 79c77a6369
commit c9f43b4da7
3 changed files with 65 additions and 5 deletions

View File

@@ -19,11 +19,6 @@ function waitsFor(condition, message, timeout, callback) {
}
expect.Assertion.prototype.equalArray = function(other) {
return goog.array.equals(this.obj, other);
};
// helper functions for async testing
(function(global) {