diff options
author | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 00:15:20 -0400 |
---|---|---|
committer | Alexander Schmitz <arschmitz@gmail.com> | 2015-08-21 08:06:24 -0400 |
commit | 3188e1c40ccbb38a70553e2b044b659212769856 (patch) | |
tree | 576a2a33056da6aec1a989dd1c294869490c999f /tests/unit/subsuite.js | |
parent | fe5534b3479e5971b370636f7da34c0a1b4a7e42 (diff) | |
download | jquery-ui-3188e1c40ccbb38a70553e2b044b659212769856.tar.gz jquery-ui-3188e1c40ccbb38a70553e2b044b659212769856.zip |
Tests: Style updates
Ref #14246
Ref gh-1588
Diffstat (limited to 'tests/unit/subsuite.js')
-rw-r--r-- | tests/unit/subsuite.js | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/unit/subsuite.js b/tests/unit/subsuite.js index a591ae711..31a279c28 100644 --- a/tests/unit/subsuite.js +++ b/tests/unit/subsuite.js @@ -1,4 +1,4 @@ -(function() { +( function() { var versions = [ "1.7.0", "1.7.1", "1.7.2", @@ -9,6 +9,7 @@ var versions = [ "compat-git" ], additionalTests = { + // component: [ "other_test.html" ] }; @@ -18,8 +19,8 @@ window.testAllVersions = function( widget ) { function( test ) { return $.map( versions, function( version ) { return test + "?jquery=" + version; - }); - })); + } ); + } ) ); }; -}()); +}() ); |