CI完成端到端测试后如何继续工作

时间:2018-08-05 09:26:26

标签: jenkins protractor angular-cli jenkins-pipeline

我已经在CI上运行了此测试,但是完成后它将使整个过程停顿。我如何能够停止或允许继续进行decimal的处理?

Deploy

堆栈:

[1]   Audit Log Viewer - Grid
[1]     ✓ should not show extra columns when moving from "asset/alert/cases" to other application
[1] 
[1] Executed 1 of 20 specs INCOMPLETE (19 SKIPPED) in 20 secs.
[1] [12:14:11] I/launcher - 0 instance(s) of WebDriver still running
[1] [12:14:11] I/launcher - chrome #01 passed
[1] ng e2e -s false -pc proxy.conf.json exited with code 0

1 个答案:

答案 0 :(得分:0)

答案:我正在使用concurrently /dist/app.js && npm run e2e

在测试完成运行后,我分开了调用并杀死了/dist/app.js进程。

这样,它使我可以调用npm run e2e而不会停止进程。