diff options
author | Oleg Gaidarenko <markelog@gmail.com> | 2014-01-27 23:32:46 +0400 |
---|---|---|
committer | Oleg Gaidarenko <markelog@gmail.com> | 2014-04-15 17:45:58 +0400 |
commit | 7149726485ff41afcfd2d12cb3041fe268cc909d (patch) | |
tree | a211c3e0eb006bdacc247c8b91d172f78ca5a342 /test/data | |
parent | e0b606d2bdd6cddeace765a50f727a33201e621d (diff) | |
download | jquery-7149726485ff41afcfd2d12cb3041fe268cc909d.tar.gz jquery-7149726485ff41afcfd2d12cb3041fe268cc909d.zip |
Tests: Remove QUnit start hook
Diffstat (limited to 'test/data')
-rw-r--r-- | test/data/testrunner.js | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/test/data/testrunner.js b/test/data/testrunner.js index 474073845..c493618e7 100644 --- a/test/data/testrunner.js +++ b/test/data/testrunner.js @@ -1,8 +1,7 @@ define(function() { // Allow subprojects to test against their own fixtures -var oldStart = window.start, - qunitModule = QUnit.module, +var qunitModule = QUnit.module, qunitTest = QUnit.test, // Store the old counts so that we only assert on tests that have actually leaked, // instead of asserting every time a test has leaked sometime in the past @@ -27,15 +26,6 @@ QUnit.config.testTimeout = 2e4; // 20 seconds QUnit.config.requireExpects = true; /** - * QUnit hooks - */ - -// Sandbox start for great justice -window.start = function() { - oldStart(); -}; - -/** * @param {jQuery|HTMLElement|Object|Array} elems Target (or array of targets) for jQuery.data. * @param {string} key */ |