Testing Meteor with Velocity at Codeship

Deadly 提交于 2019-12-04 17:01:05

Ahoy,

velocity-cli needs to be install globally. Could you add the following command to your setup steps before you call the meteor executable?

npm install -g velocity-cli

Disclaimer: I'm working for Codeship

did you try

meteor run --test

command? This is what velocity-cli creators are telling to do now.

I got it working by changing the setup commands from the OP to the following :

curl -o meteor_install_script.sh https://install.meteor.com/
chmod +x meteor_install_script.sh
sed -i "s/type sudo >\/dev\/null 2>&1/\ false /g" meteor_install_script.sh
./meteor_install_script.sh
export PATH=$HOME/.meteor:$PATH
npm install -g velocity-cli

Also, for what it's worth I am using cucumber instead of jasmine and this still applies.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!