aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/selectable/selectable_common.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/selectable/selectable_common.js')
-rw-r--r--tests/unit/selectable/selectable_common.js9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/unit/selectable/selectable_common.js b/tests/unit/selectable/selectable_common.js
index 79bf6e3c5..9a14e6df5 100644
--- a/tests/unit/selectable/selectable_common.js
+++ b/tests/unit/selectable/selectable_common.js
@@ -1,4 +1,9 @@
-TestHelpers.commonWidgetTests("selectable", {
+define( [
+ "lib/common",
+ "ui/selectable"
+], function( common ) {
+
+common.testWidget( "selectable", {
defaults: {
appendTo: "body",
autoRefresh: true,
@@ -20,3 +25,5 @@ TestHelpers.commonWidgetTests("selectable", {
unselecting: null
}
});
+
+} );