1

我正在尝试在一个全新的 Meteor 项目中使用黄瓜(通过 Velocity)。

meteor create cucetest
cd cucetest
meteor add xolvio:cucumber
meteor

我已经在 OS X El Capitan 10.11 以及全新的 Cloud 9 IDE Ubuntu vm(使用meteor --port $IP:$PORT)上进行了尝试。

不幸的是,添加示例功能后,Velocity 报告错误,黄瓜日志显示以下内容:

[xolvio:cucumber] Bad response from Chimp server.
{ statusCode: 200,
  content: '',
  headers: 
   { 'content-type': 'application/json; charset=utf-8',
     'cache-control': 'no-cache',
     'content-length': '0',
     date: 'Fri, 23 Oct 2015 21:04:56 GMT',
     connection: 'keep-alive' },
  data: null }

当我渴望开始编写功能但无法让黄瓜在我的 Mac 或 Ubuntu 开发机器上工作时,我有什么遗漏吗?

4

1 回答 1

0

抓住我做的以下要点:

https://gist.github.com/ffxsam/30905336d8cb43ed7b4d

这是我用于每个 Meteor+React 项目的脚手架脚本。没关系它使用 React,那部分是不相关的。您应该可以做到meteor run,Cucumber 应该可以正常工作(镜像启动需要一两分钟)。

如果有的话,您可以查看tests文件夹以了解应如何设置。

于 2015-10-23T22:38:42.563 回答