// Enforce an "expect" argument or expect() call in all test bodies.
QUnit.config.requireExpects = true;
-
-/**
- * Load the TestSwarm listener if swarmURL is in the address.
- */
-(function() {
- var url = window.location.search;
- url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + "swarmURL=".length ) );
-
- if ( !url || url.indexOf("http") !== 0 ) {
- return;
- }
-
- document.write("<scr" + "ipt src='http://swarm.jquery.org/js/inject.js?" + (new Date()).getTime() + "'></scr" + "ipt>");
-})();
// Tests are always loaded async
QUnit.config.autostart = false;
function loadTests() {
- var tests = [
+ var loadSwarm,
+ url = window.location.search,
+ tests = [
"data/testrunner.js",
"unit/core.js",
"unit/callbacks.js",
"unit/offset.js",
"unit/dimensions.js"
];
+ url = decodeURIComponent( url.slice( url.indexOf("swarmURL=") + "swarmURL=".length ) );
+ loadSwarm = url && url.indexOf("http") === 0;
+
// Ensure load order (to preserve test numbers)
(function loadDep() {
var dep = tests.shift();
testSubproject( "Sizzle", "../bower_components/sizzle/test/", /^unit\/.*\.js$/, function() {
// Call load to build module filter select element
QUnit.load();
- QUnit.start();
+
+ // Load the TestSwarm listener if swarmURL is in the address.
+ if ( loadSwarm ) {
+ require( [ "http://swarm.jquery.org/js/inject.js?" + (new Date()).getTime() ], function() {
+ QUnit.start();
+ });
+ } else {
+ QUnit.start();
+ }
});
}
})();