使用速度,meteor和travis ci

我在meteor中做了一个基本的应用,并用摩卡速度 。 我试图findbuild立在travis ci上的方法。 特拉维斯build议使用以下的.travis.yml

 language: node_js node_js: - "0.10" before_install: - "curl -L http://git.io/3l-rRA | /bin/sh" services: - mongodb env: - LAIKA_OPTIONS="-t 5000" 

不幸的是,这似乎是基于不赞成使用的laika框架 。

有没有什么方法可以在meteor应用上使用速度框架,并让它build立在travis ci上?

我在尝试在Travis上运行黄瓜testing时遇到同样的问题。

结果就像在官方网站上推荐的方式安装meteor一样简单。 这是我在我的项目中使用的configuration:

 sudo: required language: node_js node_js: - "0.12" install: - "curl https://install.meteor.com | /bin/sh" - "meteor update" script: - "meteor --test --once" env: - "SELENIUM_BROWSER=phantomjs"