aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/checkboxradio/common.js
blob: 5e03cc9df7f74f0d12767e73306191bc100f3ee6 (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/checkboxradio"
], function( common ) {

common.testWidget( "checkboxradio", {
	noDefaultElement: true,
	defaults: {
		disabled: null,
		label: null,
		icon: true,
		classes: {
			"ui-checkboxradio-label": "ui-corner-all",
			"ui-checkboxradio-icon": "ui-corner-all"
		},

		// Callbacks
		create: null
	}
} );

} );