]> source.dussan.org Git - jquery.git/commitdiff
Tests: Remove QUnit start hook
authorOleg Gaidarenko <markelog@gmail.com>
Mon, 27 Jan 2014 19:32:46 +0000 (23:32 +0400)
committerOleg Gaidarenko <markelog@gmail.com>
Tue, 15 Apr 2014 13:46:25 +0000 (17:46 +0400)
Conflicts:
test/data/testrunner.js

test/data/testrunner.js

index db68ffc86fbabf14a8c62a36d8edafc640bc7be0..830f60d240e87031eb772d272dcc6c35aed93e80 100644 (file)
@@ -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 ) {