views:

49

answers:

2

ReSharper 4.5's test runner will run MSTest tests out of the box, and that's what I'm doing. When a test fails, I click on the test to see the stacktrace and the failure reason. The pane I'm clicking in to do this is the "Unit Test Sessions" pane.

The lower half of this pane (or the right half, if you have it configured that way) shows the reason and stacktrace for the failure. This section/pane does not word wrap, so I have to use the mouse to scroll left and right all the time.

How can I make this reason/stacktrace pane word wrap?

A: 

The results are produced in HTML format and the results pane is hosting IE, so what you see is actually IE rendering HTML. The CSS looks like it is setting the content to overflow (right-click and view source), so this is why there are scroll bars.

I suppose if you were really keen on getting it sorted you might be able to use something grease monkey like to hack the CSS, but not sure if you can attach those kind of scripts to "about:blank" which is the location of the page.

chibacity
A: 

For such issues, you'd better fire a bug report to JetBrains guys via ReSharper menu | Send Feedback. That can help you better discuss with the team instead of us normal users.

Lex Li