Melody
Melody

Reputation: 1203

Unit testing for Javascript

Can any one tell me is it possible to create nunit test case for javascript and jquery? if it is possible how to unit test the javascript and jquery?

Thanks.

Upvotes: 1

Views: 113

Answers (2)

Sushanth --
Sushanth --

Reputation: 55740

You can use Qunit testing library to test your javascript and jQuery..

http://qunitjs.com/

You can also use FireUnit , a firebug extension to unit test your javasvript..

Upvotes: 3

Rob
Rob

Reputation: 3574

I don't know if this is what you need, but I test my Javascript with this site: http://jsfiddle.net/ You can put in the code and execute to see the results.

Upvotes: 1

Related Questions