运行 Newman 和 node.js 时如何抑制 CLI 输出

How to supress CLI output when running Newman with node.js

如何指定以下 Newman Reporter 选项,这些选项通常通过命令行完成,如下所示:

newman run .\API-Common.postman_collection.json 44321 --reporter-cli-no-failures --reporter-cli-no-summary --reporter-cli-no-assertions --reporter-cli-no-success-assertions

像这样使用 API:

newman.run({
collection,
environment,
globals,
reporters: ['cli'],
reporter: {
    cli: {
        ???
    }
},
insecure: 'true'
}, process.exit);

newman API 参考资料似乎没有说明这是如何完成的: Newman API

newman.run({
collection,
environment,
globals,
reporters: ['cli'],
reporter: {
    cli: {
        'noSummary': true
    }
},
insecure: 'true'
}, process.exit);

不带 reporter-reortername 直接传