aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/button/common.js
blob: 91ce1cff9814f33b15af18146b5ef6612d578b20 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
define( [
	"lib/common",
	"ui/widgets/button"
], function( common ) {

common.testWidget( "button", {
	defaults: {
		classes: {
			"ui-button": "ui-corner-all"
		},
		disabled: null,
		icon: null,
		iconPosition: "beginning",
		label: null,
		showLabel: true,

		// Callbacks
		create: null
	}
} );

} );