in reply to Automated testing driving me nuts...

The only way to meaningfully test your JavaScript is to get all the operating systems and browsers you intend to support in a room and run it on all of them. Short of that, it probably isn't worth doing more than verifying that the JavaScript you expected to get sent is getting sent. My advice is to test your server-side code with automated testing and leave the JavaScript to the same people who "test" the HTML to see if it looks okay.
  • Comment on Re: Automated testing driving me nuts...