From 1d193c24dc3f860e0d03d9e66495701b8e69789b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Scott=20Gonz=C3=A1lez?= Date: Fri, 17 Apr 2015 10:47:23 -0400 Subject: [PATCH] Tests: Fix loading in TestSwarm --- tests/lib/bootstrap.js | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js index a381394a8..1c5527816 100644 --- a/tests/lib/bootstrap.js +++ b/tests/lib/bootstrap.js @@ -12,13 +12,15 @@ requirejs.config({ "qunit-assert-classes": "../../../external/qunit-assert-classes/qunit-assert-classes", "qunit-assert-close": "../../../external/qunit-assert-close/qunit-assert-close", "qunit": "../../../external/qunit/qunit", + "testswarm": "http://swarm.jquery.org/js/inject.js?" + (new Date()).getTime(), "ui": "../../../ui" }, shim: { "globalize/ja-JP": [ "globalize" ], "jquery-simulate": [ "jquery" ], "qunit-assert-classes": [ "qunit" ], - "qunit-assert-close": [ "qunit" ] + "qunit-assert-close": [ "qunit" ], + "testswarm": [ "qunit" ] } }); @@ -62,8 +64,12 @@ function requireTests( dependencies, noBackCompat ) { "jquery-simulate" ].concat( dependencies ); + // Load the TestSwarm injector, if necessary + if ( parseUrl().swarmURL ) { + dependencies.push( "testswarm" ); + } + requireModules( dependencies, function( QUnit ) { - swarmInject(); QUnit.start(); } ); } @@ -97,17 +103,6 @@ function jqueryUrl() { return url; } -function swarmInject() { - var url = parseUrl().swarmURL; - - if ( !url || url.indexOf( "http" ) !== 0 ) { - return; - } - - document.write( "" ); -} - // Load test modules based on data attributes // - data-modules: list of test modules to load // - data-widget: A widget to load test modules for