You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A test which includes multiple jQuery effects calls will cause rhino to hang after executing that test. The test may run and report that it completed successfully but since that rhino instance does not terminate the rest of the test suite will not execute.
For example:
Screw.Unit(function() {
describe("should not hang when applying multiple fade effects", function() {
it("should fade multiple elements", function() {
$("#element1").fadeTo('slow', 0);
$("#element2").fadeTo('slow', 1);
});
});
});
The text was updated successfully, but these errors were encountered:
Using "jQuery.fx.off = true" to disable effect timing prevents the above test from hanging rhino. I need to continue testing to see if this fixes the similar tests I have encountered.
A test which includes multiple jQuery effects calls will cause rhino to hang after executing that test. The test may run and report that it completed successfully but since that rhino instance does not terminate the rest of the test suite will not execute.
For example:
Screw.Unit(function() {
describe("should not hang when applying multiple fade effects", function() {
it("should fade multiple elements", function() {
$("#element1").fadeTo('slow', 0);
$("#element2").fadeTo('slow', 1);
});
});
});
The text was updated successfully, but these errors were encountered: