服务器启动npm脚本后,我正在尝试运行newman测试 这是我的npm脚本:
"start-newman": "gulp run-newman"
我想启动服务器然后通过gulp脚本运行newman,但是问题是当我用node bin / www启动服务器时,我的newman脚本无法运行,我该如何解决这个问题或最好的解决办法纽曼测试的做法??
const newman = require('newman'); // require newman
const newmanConfig = {
collection: './test/test.json', // path to postman collection
environment: './test/environment.json', // postman env
iterationCount: 1,
reporters: 'html', // type of report to create
reporter: {
html: {
export: 'reports/report.html', // todo add date, time, name &
// version of project
},
},
};
gulp.task('run-newman', async () => {
await newman.run(newmanConfig);
})