Skip to content

Commit 3311d2c

Browse files
Put this back and release
1 parent 912d8d1 commit 3311d2c

File tree

2 files changed

+4
-7
lines changed

2 files changed

+4
-7
lines changed

NewmanPostman/newmantask.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ function GetToolRunner(collectionToRun: string) {
2121
newman.argIf(typeof sslClientCert != 'undefined' && tl.filePathSupplied('sslClientCert'), ['--ssl-client-cert', sslClientCert]);
2222
let sslClientKey = tl.getPathInput('sslClientKey', false, true);
2323
newman.argIf(typeof sslClientKey != 'undefined' && tl.filePathSupplied('sslClientKey'), ['--ssl-client-key', sslClientKey]);
24-
let sslInsecure = tl.getBoolInput('sslInsecure');
25-
newman.argIf(sslInsecure, ['--insecure']);
24+
let sslStrict = tl.getBoolInput('sslStrict');
25+
newman.argIf(sslStrict, ['--insecure']);
2626

2727
let unicodeDisabled = tl.getBoolInput('unicodeDisabled');
2828
newman.argIf(unicodeDisabled, ['--disable-unicode']);

NewmanPostman/task.json

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@
55
"description": "Using Newman, one can effortlessly run and test a Postman Collections directly from the command-line. Now in a task!",
66
"helpMarkDown": "[More Information](https://github.com/carlowahlstedt/NewmanPostman_VSTS_Task/blob/master/README.md)",
77
"category": "Test",
8-
"visibility": [
9-
"Build",
10-
"Release"
11-
],
8+
"visibility": ["Build", "Release"],
129
"author": "Carlo Wahlstedt",
1310
"version": {
1411
"Major": 4,
@@ -241,7 +238,7 @@
241238
"groupName": "ssl"
242239
},
243240
{
244-
"name": "sslInsecure",
241+
"name": "sslStrict",
245242
"type": "boolean",
246243
"label": "Disable Strict SSL",
247244
"helpMarkDown": "Disables strict ssl",

0 commit comments

Comments
 (0)