Skip to content

Commit

Permalink
Prepped a new version for release
Browse files Browse the repository at this point in the history
  • Loading branch information
carlowahlstedt committed Jan 25, 2018
1 parent 0148071 commit 11b7a09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion NewmanPostman/newmantask.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ function GetToolRunner() {
newman.argIf(typeof sslClientCert != 'undefined' && sslClientCert, ['--ssl-client-cert', sslClientCert]);
let sslClientKey = tl.getPathInput('sslClientKey', false, true);
newman.argIf(typeof sslClientKey != 'undefined' && sslClientKey, ['--ssl-client-key', sslClientKey]);
let sslStrict = tl.getPathInput('sslStrict', false, true);
newman.argIf(typeof sslStrict != 'undefined' && sslStrict, ['--insecure', sslStrict]);
let reporterHtmlTemplate = tl.getPathInput('reporterHtmlTemplate', false, true);
newman.argIf(typeof reporterHtmlTemplate != 'undefined' && reporterHtmlTemplate, ['--reporter-html-template', reporterHtmlTemplate]);
let reporterHtmlExport = tl.getInput('reporterHtmlExport');
Expand All @@ -31,9 +33,9 @@ function GetToolRunner() {
newman.argIf(typeof timeoutRequest != 'undefined' && timeoutRequest, ['--timeout-request', timeoutRequest]);
let numberOfIterations = tl.getInput('numberOfIterations');
newman.argIf(typeof numberOfIterations != 'undefined' && numberOfIterations, ['-n', numberOfIterations]);
newman.arg(['-e', tl.getPathInput('environment', true, true)]);
let globalVariable = tl.getPathInput('globalVariables', false, true);
newman.argIf(typeof globalVariable != 'undefined' && globalVariable, ['--globals', globalVariable]);
newman.arg(['-e', tl.getPathInput('environment', true, true)]);
return newman;
}
function run() {
Expand Down
2 changes: 1 addition & 1 deletion vss-extension.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifestVersion": 1,
"id": "NewmanPostman",
"version": "1.0.16",
"version": "1.0.17",
"name": "Newman the cli Companion for Postman",
"scopes": [],
"description": "Using Newman, one can effortlessly run and test a Postman Collections directly from the command-line. Now in a task!",
Expand Down

0 comments on commit 11b7a09

Please sign in to comment.