0

jsTestDriverでJavaScriptテストを実行しようとしています。テストを開始すると、例外が発生しました。

例外の説明

jsTestDriverの.confファイルのargsにファイルパスが1つしかない場合、この問題は発生しません。例:

plugin:
 - name: "coverage"
   jar: "plugins/coverage-1.3.4.b.jar"
   module: "com.google.jstestdriver.coverage.CoverageModule"
   args: "/examplepath/data/jsdevelopment/src/webhome/bp2011/js/external/jquery.js"

timeout: 60
4

1 に答える 1

0

私の問題は、次のような引用符でパスを引数に分割することでした

args: "/examplepath/data/jsdevelopment/src/webhome/bp2011/js/external/jquery.js", "/examplepath2/data/jsdevelopment/src/webhome/bp2011/js/external/jquery.js"

解決策は次のとおりです。

args: "/examplepath/data/jsdevelopment/src/webhome/bp2011/js/external/jquery.js,/examplepath2/data/jsdevelopment/src/webhome/bp2011/js/external/jquery.js"
于 2012-04-22T15:16:07.043 に答える