prototype: Stop form observers in unit tests. Closes #10938.

This commit is contained in:
Tobie Langel 2008-03-09 07:14:28 +00:00
parent 5a50e4d2c0
commit bfee207d1a
2 changed files with 5 additions and 0 deletions

View File

@ -1,3 +1,5 @@
* Stop form observers in unit tests. Closes #10938. [kangax]
* Performance improvements for Enumerables. Closes #11264. [Ben, Samuel Lebeau]
* deprecation extension: mark Hash.toJSON() as removed. [Tobie Langel]

View File

@ -191,6 +191,7 @@
assertEqual(1, timedCounter);
wait(550, function() {
assertEqual(1, timedCounter);
observer.stop();
});
});
});
@ -219,6 +220,7 @@
assertEqual(1, timedCounter);
wait(550, function() {
assertEqual(1, timedCounter);
observer.stop();
});
});
});
@ -244,6 +246,7 @@
assertEqual(1, timedCounter);
wait(550, function() {
assertEqual(1, timedCounter);
observer.stop();
});
});
});