我有Angular 6并试图在CI上对其进行测试。
"serve": "node_modules/.bin/ng serve",
"e2e:ci": "concurrently -k -s first \"npm run serve\" \"npm run e2e:ci:flake\" ",
"e2e:ci:flake": "wait-on http-get://localhost:8000 -l -v && npm run flake",
"test": "wait-on http://localhost:8000 -v"
我正在使用等待npm来检查ng服务是否已完成,站点已启动并可以使用。但是,等待总是返回503
。因此,下一个npm run flake
命令将永远不会运行。
这仅在CI框中发生。
节点:10.3.0 NPM:6.1.0
我可以绕过任何代理设置吗?