在 Newman 中运行我的集合时,测试摘要会在运行中显示并继续请求。这是可能的,因为集合中有大量请求,但我将其缩减到最低限度。
我的问题是,我可以以某种方式告诉纽曼等到收集运行结束吗?
我用来驱动收集的代码是:
const newman = require('newman');
var async = require("async");
async.series([
function(next) {
newman.run({
collection: require('../rules_splitted/agent.json'),
environment: require('../env_dev.json'),
reporters: 'cli',
bail: false
}, next);
}])