Select Test In [ https://github.com/jquery/jquery-mobile ]
Now, I'm testing jQuery Mobile using QUnit Test Suits which are attached to [
https://github.com/jquery/jquery-mobile].
Test suit is including in [ jquery-mobile/tests/unit/select/index.html ]
My condition is that iOS 5.1.1 safari browser
In Select Test(select_core.js), following test of second assertion is failed.
asyncTest( "selecting an item from a dialog sized custom select menu leaves no dialog hash key", function(){
var dialogHashKey = "ui-state=dialog";
$.testHelper.pageSequence([
resetHash,
function(timeout){
$("#select-choice-many-container-hash-check a").click();
},
function(){
ok(location.hash.indexOf(dialogHashKey) > -1);
closeDialog();
},
function(){
deepEqual(location.hash.indexOf(dialogHashKey), -1);
start();
}
]);
});
this is what meaning?
why this test is failed?
Thanks.