gpt4 book ai didi

javascript - 特拉维斯上的黑猩猩进行 meteor 测试

转载 作者:行者123 更新时间:2023-11-29 16:04:14 25 4
gpt4 key购买 nike

我正在尝试在我的 meteor 中实现测试框架 open source application .自 velocity已弃用 meteorJS,它们 recommend使用 Chimp ,我正在尝试编写它的 travis.yml 文件。

首先我还没有任何测试。我只是想制作 my build绿色的。到目前为止我的 .travis.yml 文件:

sudo: required
language: node_js
node_js:
- 0.12
install:
- curl https://install.meteor.com | /bin/sh
- meteor update
- npm install -g chimp
script:
- meteor
- chimp --ddp=http://localhost:3000 --watch --path=tests
env:
- SELENIUM_BROWSER=phantomjs

但这当然行不通,因为 meteor 一启动就阻塞了终端。因此,此脚本永远不会转到以 chimp 开头的行。

在 travis 上使用黑猩猩的任何帮助将不胜感激..

谢谢

最佳答案

新版本的 meteor 现在有测试命令了!

sudo: false

language: node_js

before_install:
- curl https://install.meteor.com | /bin/sh
- export PATH="$HOME/.meteor:$PATH"

script:
- meteor build $HOME/build.tgz

cache:
directories:
- node_modules

before_script:
- meteor npm install

script:
- meteor add dispatch:mocha-phantomjs
- meteor test --once --driver-package dispatch:mocha-phantomjs

关于javascript - 特拉维斯上的黑猩猩进行 meteor 测试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35717086/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com