diff options
Diffstat (limited to 'tests/unit/selectable')
-rw-r--r-- | tests/unit/selectable/selectable_common.js | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/tests/unit/selectable/selectable_common.js b/tests/unit/selectable/selectable_common.js index 00bbedc61..d00a47be5 100644 --- a/tests/unit/selectable/selectable_common.js +++ b/tests/unit/selectable/selectable_common.js @@ -3,11 +3,19 @@ TestHelpers.commonWidgetTests("selectable", { appendTo: "body", autoRefresh: true, cancel: "input,textarea,button,select,option", - create: null, delay: 0, disabled: false, distance: 0, filter: "*", - tolerance: "touch" + tolerance: "touch", + + // callbacks + create: null, + selected: null, + selecting: null, + start: null, + stop: null, + unselected: null, + unselecting: null } }); |