我想编写一个PR,它将Underscore JS更新到1.8版本,我尝试运行现有的测试套件以在更新代码之前获得一个传递,但得到以下内容..
$ git rev-parse HEAD
9fbea207d350334499e4218ff82c5928aa8dd0a9 #meteor/meteor/devel
$ meteor test-packages packages/underscore
[[[[[ Tests ]]]]]
=> Started proxy.
=> Started MongoDB.
=> Errors prevented startup:
While selecting package versions:
error: No version of underscore satisfies all constraints: @=1.0.4-plugins.0, @=1.0.3
我也为tracker
包得到了这个,同样的错误,不同的数字。
在METEOR@1.0.2-rc.7
上也会遇到类似的错误 - 测试的方式是否与我使用的方式不同?
答案 0 :(得分:0)
事实证明这是因为我和当前的候选人一起玩;我需要传递--release
标志
meteor --release METEOR@1.0.2-rc.7 test-packages ./
This post让我知道我需要这样做: