aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/tooltip/deprecated.js
blob: 7fc7d91a48397e6186e7e73f6a11c8b69ecb3fdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
define( [
	"jquery",
	"ui/widgets/tooltip"
], function( $ ) {

module( "tooltip: (deprecated) options" );

test( "tooltipClass", function( assert ) {
	expect( 1 );
	var element = $( "#tooltipped1" ).tooltip( {
		tooltipClass: "custom"
	} ).tooltip( "open" );
	assert.hasClasses( $( "#" + element.data( "ui-tooltip-id" ) ), "custom" );
} );

} );