Skip to content

Commit

Permalink
Merge pull request #51 from esbenbach/master
Browse files Browse the repository at this point in the history
Removed path check for Junit report output path
  • Loading branch information
carlowahlstedt authored Feb 20, 2019
2 parents c19603d + e9cba79 commit f8acf03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion NewmanPostman/newmantask.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function GetToolRunner(collectionToRun: string) {
newman.argIf(typeof reporterHtmlExport != 'undefined' && tl.filePathSupplied('reporterHtmlExport'), ['--reporter-html-export', reporterHtmlExport]);
let reporterJsonExport = tl.getPathInput('reporterJsonExport');
newman.argIf(typeof reporterJsonExport != 'undefined' && tl.filePathSupplied('reporterJsonExport'), ['--reporter-json-export', reporterJsonExport]);
let reporterJUnitExport = tl.getPathInput('reporterJUnitExport', false, true);
let reporterJUnitExport = tl.getPathInput('reporterJUnitExport', false, false);
newman.argIf(typeof reporterJUnitExport != 'undefined' && tl.filePathSupplied('reporterJUnitExport'), ['--reporter-junit-export', reporterJUnitExport]);

let reporterList = tl.getInput('reporters');
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": 3,
"Minor": 0,
"Patch": 21
"Patch": 22
},
"demands": [],
"groups": [{
Expand Down

0 comments on commit f8acf03

Please sign in to comment.