こんにちは、module.exports 内でループを呼び出す方法はありますか?
module.exports = {
'GZAIS Create New Asset': function (test) {
test
.assert.exists('input#asset_name', 'asset input exists')
.assert.exists('textarea#asset_description', 'asset description exists')
.assert.exists('input#asset_type', 'asset type exists')
.assert.exists('input#date_purchased', 'date purchased exists')
.assert.exists('.filter-option', 'status exists')
.assert.exists('input#serial_number', 'Serial Number exists')
.assert.exists('input#supplier', 'Supplier field exists')
.assert.exists('input#reason', 'Reason for purchase field exists')
.done();
}
};
現在、これは、フィールドが存在する場合にフィールドをアサートするという私の設計です。私がやりたいのは、 for ループを使用して、あまり繰り返しを避けることです。
だから、それはほとんどこのように見えるでしょう
var assetInput = ['asset_name','asset_description','asset_type','date_purchased','serial_number','supplier','reason'];
module.exports = {
'GZAIS Create New Asset': function (test) {
test
for(var i=0; i<assetInput.length; i++){
.assert.exists('input#'+assetInput[i], assetInput[i] + 'exists')
}
.done();
}
};
しかし、問題はこのコードが機能しないことです。module.exports 内にループを実装する方法を知っていますか?