aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Schmitz <arschmitz@gmail.com>2015-08-21 00:15:20 -0400
committerAlexander Schmitz <arschmitz@gmail.com>2015-08-21 08:06:24 -0400
commit3188e1c40ccbb38a70553e2b044b659212769856 (patch)
tree576a2a33056da6aec1a989dd1c294869490c999f
parentfe5534b3479e5971b370636f7da34c0a1b4a7e42 (diff)
downloadjquery-ui-3188e1c40ccbb38a70553e2b044b659212769856.tar.gz
jquery-ui-3188e1c40ccbb38a70553e2b044b659212769856.zip
Tests: Style updates
Ref #14246 Ref gh-1588
-rw-r--r--tests/index.js4
-rw-r--r--tests/unit/subsuite.js9
2 files changed, 7 insertions, 6 deletions
diff --git a/tests/index.js b/tests/index.js
index 26c07498f..30771f794 100644
--- a/tests/index.js
+++ b/tests/index.js
@@ -1,4 +1,4 @@
-$(function() {
+$( function() {
$( "#main" )
.addClass( "ui-widget" )
@@ -7,4 +7,4 @@ $( "#main" )
.next()
.addClass( "ui-widget-content ui-corner-bottom" );
-});
+} );
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;
- });
- }));
+ } );
+ } ) );
};
-}());
+}() );