TestSwarm
John Resig (jQuery) is working on a tool for distributed JavaScript testing, TestSwarm. Mainly for open source JavaScript projects, but the project is open source, so it should be possible for corporate testing as well.
pros:
- Supports all major browsers/operating systems
- Run on multiple clients at once
- Don't need to run server/clients on development computer (no need for IE)
- Automatic run tests on all clients when you commit something (or whenever you modify the script to run the tests)
- Supports multiple JavaScript test frameworks
- Have test results for OS and browser versions
cons:
- Can not break your build through ant/maven
- Don't notice the test fail before commit
- No IDEplug-in
http://ejohn.org/blog/javascript-testing-does-not-scale/
TestSwarm architecture:

JsTestDriver
Some people at Google have also started on a distributed JavaScript tool, JsTestDriver. It is similar to TestSwarm, that it has a server, and clients connected. But it also has support for running tests from command line and plugins for Eclipse and IntelliJ!
pros:
- Supports all major browsers/operating systems
- Run on multiple clients at once
- Don't need to run server/clients on development computer (no need for IE)
- Run tests from command line (jar) (can be integrated in ant/maven)
- Eclipse plugin
- IntelliJ plugin
- Supports multiple JavaScript test frameworks
cons:
- Can't think of any :)
- Doesn't show results for os or browser version. Only browser names.
Overview of how JsTestDriver works at runtime:

Eclipse plugin screenshot:

Short intro video: http://www.youtube.com/watch?v=V4wYrR6t5gE
