Skip to content

Commit

Permalink
Release 1.0.18
Browse files Browse the repository at this point in the history
  • Loading branch information
carlowahlstedt committed Jan 26, 2018
1 parent 906054f commit 3d57c63
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions NewmanPostman/newmantask.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +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 sslStrict = tl.getBoolInput('sslStrict');
newman.argIf(sslStrict, ['--insecure']);
let reporterHtmlTemplate = tl.getPathInput('reporterHtmlTemplate', false, true);
newman.argIf(typeof reporterHtmlTemplate != 'undefined' && reporterHtmlTemplate, ['--reporter-html-template', reporterHtmlTemplate]);
let reporterHtmlExport = tl.getInput('reporterHtmlExport');
Expand All @@ -34,7 +34,7 @@ function GetToolRunner() {
let numberOfIterations = tl.getInput('numberOfIterations');
newman.argIf(typeof numberOfIterations != 'undefined' && numberOfIterations, ['-n', numberOfIterations]);
let globalVariable = tl.getPathInput('globalVariables', false, true);
newman.argIf(typeof globalVariable != 'undefined' && globalVariable, ['--globals', globalVariable]);
newman.argIf(typeof globalVariable != 'undefined' && tl.filePathSupplied('globalVariables'), ['--globals', globalVariable]);
newman.arg(['-e', tl.getPathInput('environment', true, true)]);
return newman;
}
Expand Down
2 changes: 1 addition & 1 deletion NewmanPostman/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"version": {
"Major": 2,
"Minor": 0,
"Patch": 14
"Patch": 15
},
"demands": [],
"groups": [
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.17",
"version": "1.0.18",
"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 3d57c63

Please sign in to comment.