这是我需要的:
有什么方法可以在同一个过程中运行app和测试吗?
UPD。
问题已经解决了一半:我使用mocha + should + restler来测试我的应用程序。这是工作。但是如何设置jenkins来运行这些测试?
答案 0 :(得分:0)
自由式工作 - >执行shell脚本 - >
npm install
node run.js &
node_pid=$!
sleep 15 // so tests won't fail because server not yet started
./node_modules/.bin/mocha --reporter tap > results/s-api.tap
result=$?
kill $node_pid
sleep 1 // so jenkins won't "scream" about leaked process
return result // we need return code of tests