updated docs to include config option, details about the new testing process added to CONTRIBUTING.md, grunt-saucelabs returned to upstream

This commit is contained in:
Spencer Alger
2014-01-15 12:00:25 -07:00
parent 94692a9df0
commit 37e35025a0
4 changed files with 75 additions and 26 deletions

View File

@ -23,17 +23,12 @@ module.exports = function (grunt) {
grunt.registerTask('unit_test', [
'jshint',
'mochacov:unit'
'run:generate',
'mochacov:unit',
]);
grunt.registerTask('coverage', [
'mochacov:make_coverage_html',
'open:coverage'
]);
grunt.registerTask('travis', [
'test',
'browser_clients:test',
'mochacov:ship_coverage'
]);
};