|
|
|
|
|
by rubymaverick
4935 days ago
|
|
We (Code School) actually run all of our tests server side, even for courses like Mobile Web and Backbone.js. We do this because we don't want to deal with the headache of dealing with cross-browser issues. For Javascript or HTML/CSS related courses we use either Node.js with jsdom or Node.js with phantomjs (we started with jsdom but now use phantomjs for these courses). It makes everything more reliable, and we can always assure the consistency of testing the submitted code. |
|