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.
Comments: When I make the change and create a test name with unicode characters I am not seeing them printed correctly. Can you share with me the test case you used and your expected output?
```
p.StartInfo.StandardOutputEncoding = new UTF8Encoding();
```
in RunExecutableAndProcessOutput solves problem for me.
Comments: When I make the change and create a test name with unicode characters I am not seeing them printed correctly. Can you share with me the test case you used and your expected output?