From ebac797ac22225aeca4fad2658aae9b71670fec6 Mon Sep 17 00:00:00 2001 From: Rick Waldron Date: Thu, 28 Apr 2011 15:28:01 -0400 Subject: [PATCH] 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 --- test/data/testrunner.js | 9 +++++++++ 1 file changed, 9 insertions(+) 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(""); })(); + +// QUnit Aliases +(function() { + + window.equals = window.equal; + window.same = window.deepEqual; + +})(); +