-/*jshint multistr:true*/
+/*jshint multistr:true */
var jQuery = this.jQuery || "jQuery", // For testing .noConflict()
$ = this.$ || "$",
originaljQuery = jQuery,
original$ = $,
hasPHP = true,
+ // Disable Ajax tests to reduce network strain
+ // Re-enabled (at least the variable should be declared)
+ isLocal = window.location.protocol === "file:",
amdDefined;
/**
* @result "data/test.php?foo=bar&10538358345554"
*/
function url( value ) {
- return value + (/\?/.test(value) ? "&" : "?") + new Date().getTime() + "" + parseInt(Math.random()*100000);
+ return value + (/\?/.test(value) ? "&" : "?") + new Date().getTime() + "" + parseInt(Math.random() * 100000, 10);
}
(function () {
jQuery( "<iframe/>" ).attr( "src", url( "./data/" + fileName ) )
).appendTo( "body" );
});
- }
+ };
}());
// Sandbox start for great justice
}
fnTest.apply( this, arguments );
- }
+ };
}
}
return;
}
- // (Temporarily) Disable Ajax tests to reduce network strain
- // isLocal = QUnit.isLocal = true;
-
document.write("<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + (new Date).getTime() + "'></scr" + "ipt>");
})();
test("Unit Testing Environment", function () {
expect(2);
- ok( hasPHP, "Running Unit tests without PHP is unsupported! The AJAX tests won't run without it and don't expect all tests to pass without it!" );
- ok( !isLocal, "Unit tests shouldn't be run from file://, especially in Chrome. If you must test from file:// with Chrome, run it with the --allow-file-access-from-files flag!" );
+ ok( hasPHP, "Running in an environment with PHP support. The AJAX tests only run if the environment supports PHP!" );
+ ok( !isLocal, "Unit tests are not ran from file:// (especially in Chrome. If you must test from file:// with Chrome, run it with the --allow-file-access-from-files flag!)" );
});
test("Basic requirements", function() {
var li = "<li>very large html string</li>";
var html = ["<ul>"];
for ( i = 0; i < 50000; i += 1 ) {
- html.push(li);
+ html[html.length] = li;
}
- html.push("</ul>");
+ html[html.length] = "</ul>";
html = jQuery(html.join(""))[0];
- equal( html.nodeName.toUpperCase(), "UL");
- equal( html.firstChild.nodeName.toUpperCase(), "LI");
+ equal( html.nodeName.toLowerCase(), "ul");
+ equal( html.firstChild.nodeName.toLowerCase(), "li");
equal( html.childNodes.length, 50000 );
});