aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectable/options.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/selectable/options.js')
-rw-r--r--tests/unit/selectable/options.js54
1 files changed, 27 insertions, 27 deletions
diff --git a/tests/unit/selectable/options.js b/tests/unit/selectable/options.js
index 6bb898d26..df2f54f3e 100644
--- a/tests/unit/selectable/options.js
+++ b/tests/unit/selectable/options.js
@@ -3,62 +3,62 @@ define( [
"ui/widgets/selectable"
], function( $ ) {
-module("selectable: options");
+module( "selectable: options" );
-test("autoRefresh", function() {
- expect(3);
+test( "autoRefresh", function() {
+ expect( 3 );
var actual = 0,
- el = $("#selectable1"),
- sel = $("*", el),
+ el = $( "#selectable1" ),
+ sel = $( "*", el ),
selected = function() { actual += 1; };
- el = $("#selectable1").selectable({ autoRefresh: false, selected: selected });
+ el = $( "#selectable1" ).selectable( { autoRefresh: false, selected: selected } );
sel.hide();
el.simulate( "drag", {
dx: 1000,
dy: 1000
- });
- equal(actual, sel.length);
- el.selectable("destroy");
+ } );
+ equal( actual, sel.length );
+ el.selectable( "destroy" );
actual = 0;
sel.show();
- el = $("#selectable1").selectable({ autoRefresh: true, selected: selected });
+ el = $( "#selectable1" ).selectable( { autoRefresh: true, selected: selected } );
sel.hide();
el.simulate( "drag", {
dx: 1000,
dy: 1000
- });
- equal(actual, 0);
+ } );
+ equal( actual, 0 );
sel.show();
$( sel[ 0 ] ).simulate( "drag", {
dx: 1000,
dy: 1000
- });
- equal(actual, sel.length);
+ } );
+ equal( actual, sel.length );
- el.selectable("destroy");
+ el.selectable( "destroy" );
sel.show();
-});
+} );
-test("filter", function() {
- expect(2);
+test( "filter", function() {
+ expect( 2 );
- var actual =0,
- el = $("#selectable1"),
- sel = $("*", el),
+ var actual = 0,
+ el = $( "#selectable1" ),
+ sel = $( "*", el ),
selected = function() { actual += 1; };
- el = $("#selectable1").selectable({ filter: ".special", selected: selected });
+ el = $( "#selectable1" ).selectable( { filter: ".special", selected: selected } );
el.simulate( "drag", {
dx: 1000,
dy: 1000
- });
- ok(sel.length !== 1, "this test assumes more than 1 selectee");
- equal(actual, 1);
- el.selectable("destroy");
-});
+ } );
+ ok( sel.length !== 1, "this test assumes more than 1 selectee" );
+ equal( actual, 1 );
+ el.selectable( "destroy" );
+} );
} );