Landing pull request 354. Adds QUnit Aliases to testrunner.js. Fixes #8991.

More Details:
 - https://github.com/jquery/jquery/pull/354
 - http://bugs.jquery.com/ticket/8991
1.7/enhancement_8685
Rick Waldron 2011-04-28 15:28:01 -04:00 committed by timmywil
parent c0450f3c2a
commit ebac797ac2
1 changed files with 9 additions and 0 deletions

View File

@ -24,3 +24,12 @@ jQuery.noConflict(); // Allow the test to run with other libs or jQuery's.
document.write("<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + (new Date).getTime() + "'></scr" + "ipt>");
})();
// QUnit Aliases
(function() {
window.equals = window.equal;
window.same = window.deepEqual;
})();