aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/sortable/common.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/sortable/common.js')
-rw-r--r--tests/unit/sortable/common.js53
1 files changed, 53 insertions, 0 deletions
diff --git a/tests/unit/sortable/common.js b/tests/unit/sortable/common.js
new file mode 100644
index 000000000..ab43251ab
--- /dev/null
+++ b/tests/unit/sortable/common.js
@@ -0,0 +1,53 @@
+define( [
+ "lib/common",
+ "ui/sortable"
+], function( common ) {
+
+common.testWidget( "sortable", {
+ defaults: {
+ appendTo: "parent",
+ axis: false,
+ cancel: "input, textarea, button, select, option",
+ classes: {},
+ connectWith: false,
+ containment: false,
+ cursor: "auto",
+ cursorAt: false,
+ delay: 0,
+ disabled: false,
+ distance: 1,
+ dropOnEmpty: true,
+ forcePlaceholderSize: false,
+ forceHelperSize: false,
+ grid: false,
+ handle: false,
+ helper: "original",
+ items: "> *",
+ opacity: false,
+ placeholder: false,
+ revert: false,
+ scroll: true,
+ scrollSensitivity: 20,
+ scrollSpeed: 20,
+ scope: "default",
+ tolerance: "intersect",
+ zIndex: 1000,
+
+ // callbacks
+ activate: null,
+ beforeStop: null,
+ change: null,
+ create: null,
+ deactivate: null,
+ out: null,
+ over: null,
+ receive: null,
+ remove: null,
+ sort: null,
+ start: null,
+ stop: null,
+ update: null
+ }
+});
+
+} );