Skip to content

Commit

Permalink
Fixing issue #1
Browse files Browse the repository at this point in the history
--reporter-json-summary-export does not work together with standard JSON reporter
  • Loading branch information
Spencer committed Aug 4, 2019
1 parent bae7eb8 commit 6e9a3c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ module.exports = function(newman, options) {
newman.exports.push({
name: 'newman-reporter-json-summary',
default: 'summary.json',
path: options.jsonSummaryExport,
path: options.summaryJsonExport,
content: JSON.stringify(createSummary(data.summary))
});
});
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "newman-reporter-json-summary",
"version": "1.0.10",
"version": "1.0.11",
"description": "A custom Newman Reporter that just reports a summary of the results, rather than the whole structure (which can break JSON.stringify)",
"main": "index.js",
"scripts": {
Expand Down

0 comments on commit 6e9a3c9

Please sign in to comment.