prime
prime

Reputation: 15594

Testing tool for javaScript, CSS , HTML , jQuery

I'm developing an extension for Google Chrome. I have several .js , .css , .html files in my project and I'm using notepad++ for coding. But i have to do some testing before each phase ends. Is there any standard way to do testing for them. (eg : in java we have JUnit, likewise)

Upvotes: 1

Views: 1131

Answers (3)

user2417483
user2417483

Reputation:

There isn't a single framework that I know of but you can use JSLint for Javascript or other frameworks as Raoul has mentioned. For css and html use the wc3 validators. http://validator.w3.org/ for html and http://jigsaw.w3.org/css-validator/ for css

Upvotes: 2

Raoul George
Raoul George

Reputation: 2797

Jasmine is my preferred testing framework for Javascript.

Upvotes: 1

Related Questions