aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/button/common.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit/button/common.js')
-rw-r--r--tests/unit/button/common.js22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/unit/button/common.js b/tests/unit/button/common.js
new file mode 100644
index 000000000..d376f4f05
--- /dev/null
+++ b/tests/unit/button/common.js
@@ -0,0 +1,22 @@
+define( [
+ "lib/common",
+ "ui/button"
+], function( common ) {
+
+common.testWidget( "button", {
+ defaults: {
+ classes: {},
+ disabled: null,
+ icons: {
+ primary: null,
+ secondary: null
+ },
+ label: null,
+ text: true,
+
+ // callbacks
+ create: null
+ }
+});
+
+} );