diff options
author | Rick Waldron <waldron.rick@gmail.com> | 2011-04-28 15:28:01 -0400 |
---|---|---|
committer | timmywil <tim.willison@thisismedium.com> | 2011-04-28 15:28:01 -0400 |
commit | ebac797ac22225aeca4fad2658aae9b71670fec6 (patch) | |
tree | d9989e297e1d53ee4a64a2d7dfc39d59ee3a5ddd /test | |
parent | c0450f3c2aab7af902ccf4ba0537088fc26f065d (diff) | |
download | jquery-ebac797ac22225aeca4fad2658aae9b71670fec6.tar.gz jquery-ebac797ac22225aeca4fad2658aae9b71670fec6.zip |
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
Diffstat (limited to 'test')
-rw-r--r-- | test/data/testrunner.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/test/data/testrunner.js b/test/data/testrunner.js index beb0fe2ab..7cd55e6f2 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -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; + +})(); + |