无法ping通由节点托管的站点

时间:2018-07-03 11:03:20

标签: node.js angular npm

我有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

我可以绕过任何代理设置吗?

0 个答案:

没有答案