4

从自动化测试(例如 grunt 文件)运行meteor test-packages ./时,如果流星在测试运行后退出会有所帮助。有没有办法做到这一点?命令行帮助没有提出任何此类建议,并且此问题表明这是不可能的。

4

1 回答 1

4

Tinytest 旨在连续运行并被动测试一组包。

对于持续集成场景,有一个名为spacejam的工具,它调用meteor-testpackages,等待测试完成,然后向流星发送一个 SIGTERM 信号。

$ npm install -g spacejam
$ spacejam test-packages ./

spacejam: spawning meteor
[[[[[ Tests ]]]]]

=> Started proxy.
=> Started MongoDB.
spacejam: meteor mongodb is ready
I20141129-21:12:34.361(-8)? test-in-console listening
=> Started your app.

=> App running at: http://localhost:4096/
spacejam: meteor is ready
spacejam: spawning phantomjs
phantomjs: Running tests at http://localhost:4096/ using test-in-console
S: tinytest - Moment.is : OK
C: tinytest - Moment.is : OK
passed/expected/failed/total 2 / 0 / 0 / 2
##_meteor_magic##state: done
spacejam: phantomjs exited with code: 0
spacejam: killing meteor
spacejam: meteor killed with signal: SIGTERM
于 2014-11-30T05:21:01.313 回答