Tweaked the Ajax test suite for Safari.

This commit is contained in:
John Resig 2007-08-22 07:10:50 +00:00
parent f53aa62fd3
commit f948f02680

View file

@ -1,6 +1,8 @@
module("ajax");
// Safari 3 crashes when running these tests, sigh
// Safari 3 randomly crashes when running these tests,
// but only in the full suite - you can run just the Ajax
// tests and they'll pass
if ( !jQuery.browser.safari ) {
test("serialize()", function() {
@ -39,21 +41,24 @@ test("synchronous request with callbacks", function() {
});
test("pass-through request object", function() {
expect(7);
expect(1);
stop(true);
var target = "data/name.html";
var count = 0;
var success = function() {
if(count++ == 5)
start();
// Disabled
//if(count++ == 5)
start();
};
/* Test disabled, too many simultaneous requests
ok( $.get(url(target), success), "get" );
ok( $.getIfModified(url(target), success), "getIfModified" );
ok( $.post(url(target), success), "post" );
ok( $.getScript(url("data/test.js"), success), "script" );
ok( $.getJSON(url("data/json_obj.js"), success), "json" );
*/
ok( $.ajax({url: url(target), success: success}), "generic" );
});
@ -280,6 +285,7 @@ test("$.ajax - dataType html", function() {
testFoo = undefined;
var verifyEvaluation = function() {
ok( testFoo == "foo", 'Check if script was evaluated for datatype html' );
ok( foobar == "bar", 'Check if script src was evaluated for datatype html' );
start();
};
@ -290,7 +296,6 @@ test("$.ajax - dataType html", function() {
success: function(data) {
$("#ap").html(data);
ok( data.match(/^html text/), 'Check content for datatype html' );
ok( testFoo == "foo", 'Check if script was evaluated for datatype html' );
setTimeout(verifyEvaluation, 600);
}
});