我想循環一個摩卡測試套件(我想測試我的系統針對無數值與預期的結果),但我無法讓它工作。例如:循環摩卡測試?
規格/ example_spec.coffee:
test_values = ["one", "two", "three"]
for value in test_values
describe "TestSuite", ->
it "does some test", ->
console.log value
true.should.be.ok
的問題是,我的控制檯日誌輸出看起來是這樣的:
three
three
three
,我想它看起來是這樣的:
one
two
three
如何循環這些值爲我的摩卡t EST序列?
是的,只是想出了我自己的一個la https://github.com/visionmedia/mocha/issues/420。謝謝! – neezer 2012-07-06 23:36:43