diff options
| author | Julie | 2014-01-28 13:56:33 -0800 |
|---|---|---|
| committer | Igor Minar | 2014-02-05 15:39:46 -0800 |
| commit | e7face4728d3aed6dc089966d489d0c93b65913d (patch) | |
| tree | 87c321d2f057513db50039b5f6d34d961fa99457 /lib/grunt/utils.js | |
| parent | a29bff1c98161495fb304d0195c4d2916b357686 (diff) | |
| download | angular.js-e7face4728d3aed6dc089966d489d0c93b65913d.tar.bz2 | |
chore(end2end): remove old references to the scenario runner and update to point to protractor
Diffstat (limited to 'lib/grunt/utils.js')
| -rw-r--r-- | lib/grunt/utils.js | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/grunt/utils.js b/lib/grunt/utils.js index 24788bff..311bbef2 100644 --- a/lib/grunt/utils.js +++ b/lib/grunt/utils.js @@ -136,7 +136,12 @@ module.exports = { }, - updateWebdriver: function(done){ + updateWebdriver: function(done){ + if (process.env.TRAVIS) { + // Skip the webdriver-manager update on Travis, since the browsers will + // be provided remotely. + done(); + } var p = spawn('node', ['node_modules/protractor/bin/webdriver-manager', 'update']); p.stdout.pipe(process.stdout); p.stderr.pipe(process.stderr); |
