I have non latin characters in my tests names and Chutzpah displays them wrong. Output from phantomjs.exe is correct (in utf-8) and simple adding:
```
p.StartInfo.StandardOutputEncoding = new UTF8Encoding();
```
in RunExecutableAndProcessOutput solves problem for me.
```
p.StartInfo.StandardOutputEncoding = new UTF8Encoding();
```
in RunExecutableAndProcessOutput solves problem for me.