Concurrently node exits with status 1. This halts Teamcity leading it to believe that the tests failed
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am trying to run two scripts at once with concurrently . The basic command looks something like this: concurrently -k --success first "node ./tools/mock-webapi/mock-webapi.js" "npm run test-single-run" Which in turn calls (local): "test-single-run": "karma start --single-run --browsers ChromeHeadless" Or on remote (teamcity host): "test-teamcity": "karma start --reporters teamcity --single-run --browsers ChromeHeadless", The tests run just fine (local & remote). However, I keep getting exit code 1. Even if I use concurrently -k --success