私はmochaテストスイートをループしようとしています(期待した結果を持つ無数の値に対して自分のシステムをテストしたい)が、動作させることはできません。たとえば:Loop Mochaテスト?
スペック/ example_spec.coffee:私はそれは次のようになりたい
three
three
three
:
test_values = ["one", "two", "three"]
for value in test_values
describe "TestSuite", ->
it "does some test", ->
console.log value
true.should.be.ok
問題は私のコンソールログ出力は次のように見えることです。
one
two
three
私のモカのためにこれらの値をループする方法エスト?
私は、自分自身をla https://github.com/visionmedia/mocha/issues/420と考えました。ありがとう! – neezer