Skip to content

Commit

Permalink
Put this back and release
Browse files Browse the repository at this point in the history
  • Loading branch information
carlowahlstedt committed Jul 29, 2019
1 parent 912d8d1 commit 3311d2c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
4 changes: 2 additions & 2 deletions NewmanPostman/newmantask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ function GetToolRunner(collectionToRun: string) {
newman.argIf(typeof sslClientCert != 'undefined' && tl.filePathSupplied('sslClientCert'), ['--ssl-client-cert', sslClientCert]);
let sslClientKey = tl.getPathInput('sslClientKey', false, true);
newman.argIf(typeof sslClientKey != 'undefined' && tl.filePathSupplied('sslClientKey'), ['--ssl-client-key', sslClientKey]);
let sslInsecure = tl.getBoolInput('sslInsecure');
newman.argIf(sslInsecure, ['--insecure']);
let sslStrict = tl.getBoolInput('sslStrict');
newman.argIf(sslStrict, ['--insecure']);

let unicodeDisabled = tl.getBoolInput('unicodeDisabled');
newman.argIf(unicodeDisabled, ['--disable-unicode']);
Expand Down
7 changes: 2 additions & 5 deletions NewmanPostman/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,7 @@
"description": "Using Newman, one can effortlessly run and test a Postman Collections directly from the command-line. Now in a task!",
"helpMarkDown": "[More Information](https://github.com/carlowahlstedt/NewmanPostman_VSTS_Task/blob/master/README.md)",
"category": "Test",
"visibility": [
"Build",
"Release"
],
"visibility": ["Build", "Release"],
"author": "Carlo Wahlstedt",
"version": {
"Major": 4,
Expand Down Expand Up @@ -241,7 +238,7 @@
"groupName": "ssl"
},
{
"name": "sslInsecure",
"name": "sslStrict",
"type": "boolean",
"label": "Disable Strict SSL",
"helpMarkDown": "Disables strict ssl",
Expand Down

0 comments on commit 3311d2c

Please sign in to comment.