我有两个任务,我想一个接一个地运行,第一个任务正在进行中,我需要等到完成:
{
"serve": "node_modules/.bin/ng serve",
"flake": "node_modules/.bin/protractor-flake --parser standard --max-attempts=3 -- e2e/protractor.conf.js"
}
serve
任务正在进行中,我想等它准备就绪并运行“片状”。
基本上,我试图在CI框上使用Protractor-flake
运行Angular e2e测试。 e2e需要应用程序才能运行。
我尝试了concurrently
,但它没有等待ng server
准备就绪。
我也尝试过这个:
concurrently \"ng serve\" \"wait-on http://localhost:8000/ && npm run flake\" --kill-others
但是它没有运行测试。