tags:

views:

38

answers:

1

I have MVC view with javascript. What would be the best way to test my view?

+1  A: 

You can use a JavaScript unit testing framework like JSSpec

Additionally, you can use a web app testing tool like Selenium

mgroves