diff options
Diffstat (limited to 'lib/grunt/plugins.js')
| -rw-r--r-- | lib/grunt/plugins.js | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/grunt/plugins.js b/lib/grunt/plugins.js index 363b8698..a269cf82 100644 --- a/lib/grunt/plugins.js +++ b/lib/grunt/plugins.js @@ -61,6 +61,14 @@ module.exports = function(grunt) { util.startKarma.call(util, this.data, false, this.async()); }); + grunt.registerTask('webdriver', 'Update webdriver', function() { + util.updateWebdriver.call(util, this.async()); + }); + + grunt.registerMultiTask('runprotractor', 'Run Protractor integration tests', function() { + util.startProtractor.call(util, this.data, this.async()); + }); + grunt.registerTask('collect-errors', 'Combine stripped error files', function () { util.collectErrors(); }); |
