Bug 590708 - Disable testAsynchronousRequest in Prototype tests due to flakiness. r=jst

This commit is contained in:
Justin Lebar 2011-05-22 11:07:28 -04:00
parent 66de27b901
commit 45f9e9f7a0

View File

@ -32,20 +32,6 @@ new Test.Unit.Runner({
this.assertEqual("Hello world!", h2.innerHTML);
},
testAsynchronousRequest: function() {
this.assertEqual("", $("content").innerHTML);
new Ajax.Request("../fixtures/hello.js", extendDefault({
asynchronous: true,
method: 'get',
evalJS: 'force'
}));
this.wait(1000, function() {
var h2 = $("content").firstChild;
this.assertEqual("Hello world!", h2.innerHTML);
});
},
testUpdater: function() {
this.assertEqual("", $("content").innerHTML);