Vowsには、vows
コマンドを使用せずにノードの下でテストを実行するrun()メソッドがあります。
https://github.com/cloudhead/vows/blob/master/lib/vows/suite.jsで、このメソッドがデフォルト以外のレポーターを指定できるオプションパラメーターを受け取ることがわかります。
this.run = function (options, callback) {
var that = this, start;
options = options || {};
for (var k in options) { this.options[k] = options[k] }
this.matcher = this.options.matcher || this.matcher;
this.reporter = this.options.reporter || this.reporter;
別のレポーター、たとえばレポーターを選択するために、オプションオブジェクトに渡されるはずの値は何spec
ですか?