aboutsummaryrefslogtreecommitdiffstats
path: root/test/jquery.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/jquery.js')
-rw-r--r--test/jquery.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/jquery.js b/test/jquery.js
index 329285251..4146aec13 100644
--- a/test/jquery.js
+++ b/test/jquery.js
@@ -38,10 +38,6 @@
label: "Load as modules",
tooltip: "Load the jQuery module file (and its dependencies)"
}, {
- id: "amd",
- label: "Load with AMD",
- tooltip: "Load the AMD jQuery file (and its dependencies)"
- }, {
id: "dev",
label: "Load unminified",
tooltip: "Load the development (unminified) jQuery file"
@@ -77,20 +73,6 @@
eval( dynamicImportSource );
- // Apply similar treatment for AMD modules
- } else if ( config.amd && QUnit ) {
- require.config( {
- baseUrl: parentUrl
- } );
- src = "amd/jquery";
-
- // Include tests if specified
- if ( typeof loadTests !== "undefined" ) {
- require( [ src ], loadTests );
- } else {
- require( [ src ] );
- }
-
// Otherwise, load synchronously
} else {
document.write( "<script id='jquery-js' nonce='jquery+hardcoded+nonce' src='" + parentUrl + src + "'><\x2Fscript>" );