File tree Expand file tree Collapse file tree 2 files changed +4
-7
lines changed
Expand file tree Collapse file tree 2 files changed +4
-7
lines changed Original file line number Diff line number Diff 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' ] ) ;
Original file line number Diff line number Diff line change 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 ,
241238 "groupName" : " ssl"
242239 },
243240 {
244- "name" : " sslInsecure " ,
241+ "name" : " sslStrict " ,
245242 "type" : " boolean" ,
246243 "label" : " Disable Strict SSL" ,
247244 "helpMarkDown" : " Disables strict ssl" ,
You can’t perform that action at this time.
0 commit comments