|
2 | 2 | ( function() {
|
3 | 3 | /* global loadTests: false */
|
4 | 4 |
|
5 |
| - var dynamicImportSource, |
| 5 | + var dynamicImportSource, config, src, |
6 | 6 | FILEPATH = "/test/jquery.js",
|
7 | 7 | activeScript = [].slice.call( document.getElementsByTagName( "script" ), -1 )[ 0 ],
|
8 | 8 | parentUrl = activeScript && activeScript.src ?
|
9 | 9 | activeScript.src.replace( /[?#].*/, "" ) + FILEPATH.replace( /[^/]+/g, ".." ) + "/" :
|
10 | 10 | "../",
|
11 | 11 | QUnit = window.QUnit,
|
12 |
| - require = window.require, |
| 12 | + require = window.require; |
| 13 | + |
| 14 | + function getQUnitConfig() { |
| 15 | + var config = Object.create( null ); |
13 | 16 |
|
14 | 17 | // Default to unminified jQuery for directly-opened iframes
|
15 |
| - config = QUnit ? |
| 18 | + if ( !QUnit ) { |
| 19 | + config.dev = true; |
| 20 | + } else { |
16 | 21 |
|
17 | 22 | // QUnit.config is populated from QUnit.urlParams but only at the beginning
|
18 | 23 | // of the test run. We need to read both.
|
19 |
| - { |
20 |
| - esmodules: !!( QUnit.config.esmodules || QUnit.urlParams.esmodules ), |
21 |
| - amd: !!( QUnit.config.amd || QUnit.urlParams.amd ) |
22 |
| - } : |
| 24 | + QUnit.config.urlConfig.forEach( function( entry ) { |
| 25 | + config[ entry.id ] = QUnit.config[ entry.id ] != null ? |
| 26 | + QUnit.config[ entry.id ] : |
| 27 | + QUnit.urlParams[ entry.id ]; |
| 28 | + } ); |
| 29 | + } |
23 | 30 |
|
24 |
| - { dev: true }, |
25 |
| - src = config.dev ? |
26 |
| - "dist/jquery.js" : |
27 |
| - "dist/jquery.min.js"; |
| 31 | + return config; |
| 32 | + } |
28 | 33 |
|
29 | 34 | // Define configuration parameters controlling how jQuery is loaded
|
30 | 35 | if ( QUnit ) {
|
|
43 | 48 | } );
|
44 | 49 | }
|
45 | 50 |
|
| 51 | + config = getQUnitConfig(); |
| 52 | + |
| 53 | + src = config.dev ? |
| 54 | + "dist/jquery.js" : |
| 55 | + "dist/jquery.min.js"; |
| 56 | + |
46 | 57 | // Honor ES modules loading on the main window (detected by seeing QUnit on it).
|
47 | 58 | // This doesn't apply to iframes because they synchronously expect jQuery to be there.
|
48 | 59 | if ( config.esmodules && QUnit ) {
|
|
0 commit comments