relevance / blue-ridge

Framework for JavaScript Testing (currently a Rails Plugin)
http://groups.google.com/group/blueridgejs
MIT License
480 stars 40 forks source link

jQuery.ready is not called #37

Open dcrec1 opened 14 years ago

dcrec1 commented 14 years ago

I have a script with a code like this:

$.ready(function() { ... })

After I updated Blue Ridge, the code is not called anymore and some tests that verify an initial behaviour began to fail.

To make them pass again I had to do something like this:

require("...", {'onload': jQuery.ready})