JsTestDriverを使ってみる(その2) エンコーディング設定できない

エンコーディング設定できず、Shift_JISだと、
文字が?に変換されてしまう。

jsTestDriver.confで設定できたらいいのに、
と思ってググってみたら、以下のサイトが。

見た感じ1.2に対しパッチが提供されているように見える。
私が使っているのは、1.3.4bなので、だめぽい。

TO USE THIS:
Add a line like the following to your config file:
charset: UTF-8
Any character set name that Java understands and your browser will understand can be used. When specified,
this assumes all files listed in the file are encoded with that character encoding

TO APPLY THE PATCH FILE
If you unjar the JsTestDriver-1.2-src.jar, name the directory the com and META-INF directories go into
"originalSource". Then run
patch -p0 < charset.patch
and this will modify the source to this modification. You can then build this source and replace the old version in
the main JsTestDriver distribution (you'll need to make sure you get runner.js, heartbeatclient.js and
jstestdrivernamespace.js from the main distribution and add them to the new version of the source)

*1