Есть программный код по ссылке -
https://www.npmjs.com/package/newman-reporter-htmlextra, который представлен ниже :
const newman = require('newman');
newman.run({
collection: require('./examples/Restful_Booker_Collection.json'), // can also provide a URL or path to a local JSON file.
environment: require('./examples/Restful_Booker_Environment.json'),
reporters: 'htmlextra',
reporter: {
htmlextra: {
export: './htmlResults.html', // If not specified, the file will be written to `newman/` in the current working directory.
template: './lib/template-default.hbs' // optional, this will be picked up relative to the directory that Newman runs in.
}
}
}, function (err) {
if (err) { throw err; }
console.log('collection run complete!');
});
Как его можно реализовать , чтобы получить в результате HTML - отчет, как и при способе : newman run
https://www.getpostman.com/collectio...8e1ccfd65-JsLv -r htmlextra