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:
John Bender 2011-04-21 23:16:46 -07:00
parent 70a86c748f
commit dfab3d7920
3 changed files with 4 additions and 4 deletions

View file

@ -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(){

View file

@ -426,6 +426,6 @@
same(location.hash, firstDialogHash, "additional dialog hash key not added");
start();
}
], 1000);
], 1000);
});
})(jQuery);

View file

@ -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);