Testing Javascript in eclipse

I am working on extending firefox using eclipse and need to know how I can do unit testing for this project.

+3
source share
3 answers

I think you can use the Jasmine Framework .

+4
source

I am using JSTestDriver, http://code.google.com/p/js-test-driver and this is a great foundation. Fast lightning testing, conservation test and other interesting features.

The initial setup is a bit complicated, but definitely worth it.

+2
source

JsUnit , .

+1
source

Source: https://habr.com/ru/post/1726701/


All Articles