so - I have an application which needs 3 command prompt windows open to run - this is for angular (npm start), node (node server) and webdriver (webdriver-manager start) to run. If I do this without jenkins then I can run protractor tests using the normal "protractor " command and all works well.
I thought I'd try putting this into Jenkins (on my windows instance)
So I created a new freestyle project and had the application code checked out from git (as normal) and then used individual "Execute Windows batch command" steps for each of the steps (npm install, npm start, node server, webdriver-amanger update, webdriver-manager start, protractor )
Has anyone got experience of Node and angular with jenkins and is this the best way to run these tests?