mirror of
https://github.com/jquery/jquery-ui.git
synced 2025-01-07 20:34:24 +00:00
Calendar tests: Simplify timeout steps
This commit is contained in:
parent
9fc83a085c
commit
96b5a760c4
@ -69,32 +69,26 @@ asyncTest( "select", function() {
|
||||
} );
|
||||
|
||||
function step1() {
|
||||
setTimeout( function() {
|
||||
eventType = "mousedown";
|
||||
message = "on calendar button " + eventType;
|
||||
that.element.find( "table button:eq(1)" ).simulate( eventType );
|
||||
step2();
|
||||
}, 50 );
|
||||
eventType = "mousedown";
|
||||
message = "on calendar button " + eventType;
|
||||
that.element.find( "table button:eq(1)" ).simulate( eventType );
|
||||
setTimeout( step2, 50 );
|
||||
}
|
||||
|
||||
function step2() {
|
||||
setTimeout( function() {
|
||||
eventType = "keydown";
|
||||
message = "on calendar button " + eventType;
|
||||
testHelper.focusGrid( that.element )
|
||||
.simulate( eventType, { keyCode: $.ui.keyCode.END } )
|
||||
.simulate( eventType, { keyCode: $.ui.keyCode.ENTER } );
|
||||
step3();
|
||||
}, 50 );
|
||||
eventType = "keydown";
|
||||
message = "on calendar button " + eventType;
|
||||
testHelper.focusGrid( that.element )
|
||||
.simulate( eventType, { keyCode: $.ui.keyCode.END } )
|
||||
.simulate( eventType, { keyCode: $.ui.keyCode.ENTER } );
|
||||
setTimeout( step3, 50 );
|
||||
}
|
||||
|
||||
// This should not trigger another event
|
||||
function step3() {
|
||||
setTimeout( function() {
|
||||
that.element.calendar( "disable" );
|
||||
that.element.find( "table button:eq(10)" ).simulate( "mousedown" );
|
||||
start();
|
||||
}, 50 );
|
||||
that.element.calendar( "disable" );
|
||||
that.element.find( "table button:eq(10)" ).simulate( "mousedown" );
|
||||
setTimeout( start, 50 );
|
||||
}
|
||||
|
||||
step1();
|
||||
|
Loading…
Reference in New Issue
Block a user