aboutsummaryrefslogtreecommitdiffstats
path: root/tests/lib/bootstrap.js
diff options
context:
space:
mode:
authorTimmy Willison <timmywil@users.noreply.github.com>2024-05-15 15:19:23 -0400
committerGitHub <noreply@github.com>2024-05-15 15:19:23 -0400
commitf47c7fe44d41d6af9b6f00c7201d991b01b93035 (patch)
tree36af4e26e99e2eea4de5401609ec721643f4bc9c /tests/lib/bootstrap.js
parentec3edb687609af9677317dfd2ec80a5bec7b35c5 (diff)
downloadjquery-ui-f47c7fe44d41d6af9b6f00c7201d991b01b93035.tar.gz
jquery-ui-f47c7fe44d41d6af9b6f00c7201d991b01b93035.zip
Tests: remove code supporting jenkins and testswarm
Close gh-2251
Diffstat (limited to 'tests/lib/bootstrap.js')
-rw-r--r--tests/lib/bootstrap.js9
1 files changed, 1 insertions, 8 deletions
diff --git a/tests/lib/bootstrap.js b/tests/lib/bootstrap.js
index b86444139..c32d9765e 100644
--- a/tests/lib/bootstrap.js
+++ b/tests/lib/bootstrap.js
@@ -14,14 +14,12 @@ requirejs.config( {
"qunit-assert-classes": "../../lib/vendor/qunit-assert-classes/qunit-assert-classes",
"qunit-assert-close": "../../lib/vendor/qunit-assert-close/qunit-assert-close",
"qunit": "../../../external/qunit/qunit",
- "testswarm": "https://swarm.jquery.org/js/inject.js?" + ( new Date() ).getTime(),
"ui": "../../../ui"
},
shim: {
"globalize/ja-JP": [ "globalize" ],
"jquery-simulate": [ "jquery" ],
- "qunit-assert-close": [ "qunit" ],
- "testswarm": [ "qunit" ]
+ "qunit-assert-close": [ "qunit" ]
}
} );
@@ -69,11 +67,6 @@ function requireTests( dependencies, options ) {
dependencies = preDependencies.concat( dependencies );
- // Load the TestSwarm injector, if necessary
- if ( parseUrl().swarmURL ) {
- dependencies.push( "testswarm" );
- }
-
requireModules( dependencies, function( QUnit ) {
QUnit.start();
} );