Open GoogleCodeExporter opened 8 years ago
What's reasonably large?
Original comment by corbinrs...@gmail.com
on 13 Oct 2010 at 10:37
I don't think it is necessarily size related. I am testing a JS library (about
50k). Simple tests that use about 40% of the code work. I tried a test that
exercises much more of the code and had this problem.
Original comment by grams...@Bigfoot.com
on 13 Oct 2010 at 10:59
Here is some test code that caused a repro. If I included the first queue.defer
below I had no problem; if I included both then I got a barf. It doesn't really
seem to have an obvious trigger as these are identically structured tests:
queue.defer(function(pool) {
Syn.click({},
cbox,
pool.add(
function() {
assertEquals(false, model.checked);
assertEquals(false, cbox.checked);
}
));
});
// click again
queue.defer(function(pool) {
Syn.click({},
cbox,
pool.add(
function() {
assertEquals(true, model.checked);
assertEquals(true, cbox.checked);
}
));
});
Original comment by grams...@Bigfoot.com
on 14 Oct 2010 at 9:40
Original issue reported on code.google.com by
grams...@Bigfoot.com
on 13 Oct 2010 at 10:03