I am doing a firefox extension using eclipse and need to know how I can do unit testing for that project.
Asked
Active
Viewed 6,542 times
5
-
General question was http://stackoverflow.com/questions/300855/looking-for-a-better-javascript-unit-test-tool – Paul Verest Mar 29 '13 at 10:19
3 Answers
2
I've been using JSTestDriver, http://code.google.com/p/js-test-driver, and it is an excellent framework. Lightning fast testing, test on save, and other cool features.
Initial setup is a bit complicated, but it's certainly worth it.

Itay Maman
- 30,277
- 10
- 88
- 118
-
I love jsTestDriver too, but it really tests Javascript inside a web page. The original questioner is building an extension. – Sean McMillan Jul 14 '10 at 21:59