Run Newman in jenkins

Như Nguyễn picture Như Nguyễn · Nov 4, 2018 · Viewed 8.5k times · Source

this is my first time using Jenkins for automated test.I've tried to run a test by integrate Newman with Jenkins but I always get the

Console Error

"Newman : command not found"

as a result,it's make my test failed.

I have looking for some answers on the Internet and some tell me to add a value for Environment variables, but I don't know how to get the exact value to add to this. Please show me where can I get this.I'm using MacOS High Sierra

Jenkins Environment variables

Answer

Mukesh M picture Mukesh M · Nov 4, 2018
  1. Install https://plugins.jenkins.io/nodejs in jenkins

  2. In Global Tool Configuration add Nodejs and in "Global npm packages to install" add newman

Global Tool Configuration add Nodejs

  1. In Build Environment use "Provide Node & npm bin/ folder to PATH"

  2. In Build add "execute shell" if you are using linux or use "execute windows batch command" if you are on windows and add your newman command

    For example:

    newman run https://www.getpostman.com/collections/631643-f695cab7-6878-eb55-7943-ad88e1ccfd65-JsLv

newman