2013-08-15 18:15:49 +00:00
|
|
|
// Use the right jQuery source on the test page (and iframes)
|
2015-09-02 23:53:29 +00:00
|
|
|
( function() {
|
2013-08-29 20:18:17 +00:00
|
|
|
/* global loadTests: false */
|
2013-08-15 18:15:49 +00:00
|
|
|
|
2013-08-29 20:18:17 +00:00
|
|
|
var src,
|
|
|
|
path = window.location.pathname.split( "test" )[ 0 ],
|
2013-08-19 18:33:52 +00:00
|
|
|
QUnit = window.QUnit || parent.QUnit,
|
2013-08-19 19:01:00 +00:00
|
|
|
require = window.require || parent.require;
|
2013-08-15 18:15:49 +00:00
|
|
|
|
|
|
|
// iFrames won't load AMD (the iframe tests synchronously expect jQuery to be there)
|
2015-09-02 23:53:29 +00:00
|
|
|
QUnit.config.urlConfig.push( {
|
2013-08-15 18:15:49 +00:00
|
|
|
id: "amd",
|
|
|
|
label: "Load with AMD",
|
|
|
|
tooltip: "Load the AMD jQuery file (and its dependencies)"
|
2015-09-02 23:53:29 +00:00
|
|
|
} );
|
|
|
|
|
2013-08-27 04:31:14 +00:00
|
|
|
// If QUnit is on window, this is the main window
|
|
|
|
// This detection allows AMD tests to be run in an iframe
|
|
|
|
if ( QUnit.urlParams.amd && window.QUnit ) {
|
2015-09-02 23:53:29 +00:00
|
|
|
require.config( {
|
2013-09-10 23:47:36 +00:00
|
|
|
baseUrl: path,
|
|
|
|
paths: {
|
2014-06-10 19:32:25 +00:00
|
|
|
sizzle: "external/sizzle/dist/sizzle"
|
2013-09-10 23:47:36 +00:00
|
|
|
}
|
2015-09-02 23:53:29 +00:00
|
|
|
} );
|
2013-08-15 18:15:49 +00:00
|
|
|
src = "src/jquery";
|
2015-09-02 23:53:29 +00:00
|
|
|
|
2013-08-15 18:15:49 +00:00
|
|
|
// Include tests if specified
|
|
|
|
if ( typeof loadTests !== "undefined" ) {
|
2013-08-29 20:18:17 +00:00
|
|
|
require( [ src ], loadTests );
|
2013-08-15 18:15:49 +00:00
|
|
|
} else {
|
|
|
|
require( [ src ] );
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Config parameter to use minified jQuery
|
2015-09-02 23:53:29 +00:00
|
|
|
QUnit.config.urlConfig.push( {
|
2013-08-15 18:15:49 +00:00
|
|
|
id: "dev",
|
|
|
|
label: "Load unminified",
|
|
|
|
tooltip: "Load the development (unminified) jQuery file"
|
2015-09-02 23:53:29 +00:00
|
|
|
} );
|
2013-08-15 18:15:49 +00:00
|
|
|
if ( QUnit.urlParams.dev ) {
|
2013-08-29 20:18:17 +00:00
|
|
|
src = "dist/jquery.js";
|
2013-08-15 18:15:49 +00:00
|
|
|
} else {
|
2013-08-29 20:18:17 +00:00
|
|
|
src = "dist/jquery.min.js";
|
2013-08-15 18:15:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Load jQuery
|
2013-08-29 20:18:17 +00:00
|
|
|
document.write( "<script id='jquery-js' src='" + path + src + "'><\x2Fscript>" );
|
2013-08-15 18:15:49 +00:00
|
|
|
|
2013-09-06 21:11:04 +00:00
|
|
|
// Synchronous-only tests
|
|
|
|
// Other tests are loaded from the test page
|
2013-08-15 18:15:49 +00:00
|
|
|
if ( typeof loadTests !== "undefined" ) {
|
2015-09-02 23:53:29 +00:00
|
|
|
document.write( "<script src='" + path + "test/unit/ready.js'><\x2Fscript>" );
|
2013-08-15 18:15:49 +00:00
|
|
|
}
|
2013-08-29 20:18:17 +00:00
|
|
|
|
2015-09-02 23:53:29 +00:00
|
|
|
} )();
|