Added Start Run Stop Scripts

This commit is contained in:
Jesse
2015-08-10 15:26:25 -07:00
committed by Victor Woeltjen
parent ef7c1bd025
commit 85f9d5a2da
11 changed files with 563 additions and 0 deletions

12
protractor/bin/run.js Executable file
View File

@ -0,0 +1,12 @@
#! /usr/bin/env node
var shell = require("shelljs/global");
var sleep = require('sleep');
var command = __dirname + "/../node_modules/protractor/bin/protractor " +__dirname + "/../conf.js";
console.log("Executing Protractor Test")
exec(command, function(code, output) {
if(code != 0){
console.log('Exit code:', code);
console.log('Program output:', output);
}
});