I'm using newman and postman to run a suite of postman request and associated test scripts.
I have an environment variable that is a sensitive piece of information that I cannot store on disk (therefore I can't declare it inside of the JSON test file). I need to have some simple way for it to be passed into the tests.
I would like to assign a value to the environment variable on the command line as an argument when I run the tests.
I run the tests like so:
newman run c:\path\to\test.json
I want to do something like this:
newman run c:\path\to\test.json passwordEnvVariable=mypassword
Is such a thing possible?