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:46:25 +0400 |
commit | 270a1ebd8d6ac7d3b576c20fb0eceb6c866fa3fa (patch) | |
tree | 4d611ba3d73093f74c7d12657147f046b72facda /test | |
parent | 6c41d16b4eb02973053b3b46043a87f64b21cdb5 (diff) | |
download | jquery-270a1ebd8d6ac7d3b576c20fb0eceb6c866fa3fa.tar.gz jquery-270a1ebd8d6ac7d3b576c20fb0eceb6c866fa3fa.zip |
Tests: Remove QUnit start hook
Conflicts:
test/data/testrunner.js
Diffstat (limited to 'test')
-rw-r--r-- | test/data/testrunner.js | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/test/data/testrunner.js b/test/data/testrunner.js index db68ffc86..830f60d24 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 @@ -31,11 +30,6 @@ QUnit.config.requireExpects = true; * QUnit hooks */ -// Sandbox start for great justice -window.start = function() { - oldStart(); -}; - function keys(o) { var ret, key; if ( Object.keys ) { |