Reputation: 15594
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
Reputation: 60037
Upvotes: 1
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