chore(end2end): remove old references to the scenario runner and update to point to protractor

This commit is contained in:
Julie
2014-01-28 13:56:33 -08:00
committed by Igor Minar
parent a29bff1c98
commit e7face4728
4 changed files with 13 additions and 8 deletions

View File

@@ -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);