mirror of
https://github.com/Hopiu/jquery-mobile.git
synced 2026-03-16 22:10:25 +00:00
increased two test timeouts to give slower ci test browser time work, also included a small whitespace fix to nav
This commit is contained in:
parent
70a86c748f
commit
dfab3d7920
3 changed files with 4 additions and 4 deletions
|
|
@ -50,7 +50,7 @@
|
|||
setTimeout(function(){
|
||||
ok($(window).scrollTop() != 0, "scrolltop position should not be zero");
|
||||
start();
|
||||
}, scrollTimeout - 2);
|
||||
}, scrollTimeout - 5);
|
||||
});
|
||||
|
||||
asyncTest( "scrolling marks scrollstart as disabled for 150 ms", function(){
|
||||
|
|
|
|||
|
|
@ -426,6 +426,6 @@
|
|||
same(location.hash, firstDialogHash, "additional dialog hash key not added");
|
||||
start();
|
||||
}
|
||||
], 1000);
|
||||
], 1000);
|
||||
});
|
||||
})(jQuery);
|
||||
|
|
|
|||
|
|
@ -85,14 +85,14 @@
|
|||
},
|
||||
|
||||
function(){
|
||||
ok(location.hash.indexOf(dialogHashKey) > -1);
|
||||
ok(location.hash.indexOf(dialogHashKey) > -1, "hash should have the dialog hash key");
|
||||
$(".ui-page-active li").trigger("click");
|
||||
}
|
||||
],
|
||||
|
||||
sequence = openDialogSequence.concat(openDialogSequence).concat([start]);
|
||||
|
||||
$.testHelper.sequence(sequence, 500);
|
||||
$.testHelper.sequence(sequence, 1000);
|
||||
});
|
||||
|
||||
})(jQuery);
|
||||
|
|
|
|||
Loading…
Reference in a new issue