You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The PHP plugin shows the entire FQCN of the test case class, which makes items in the tree very long. This in turn makes it hard to reach the button to navigate to the source - which I didn't even know existed and I wanted to report an issue about it, until I discovered #69.
An example to demonstrate how long the test names are:
Would it be possible to ellipsize long test names (and e.g. show the full name in a tooltip on hover), or ellipsize the first part of the name (as the last part is usually the most important)? The idea is that there would be no horizontal scrollbar and the action buttons would always be visible on hover to the right. This would be similar to what the Tree Style Tabs extension does in Firefox:
Thanks!
The text was updated successfully, but these errors were encountered:
Long test names are already being ellipsized, there is no horizontal scrollbar, the action buttons are visible and the full test name appears on hover:
All of this is actually standard VS Code behavior for contributed tree views.
The only thing that is missing here is the ability to ellipsize the first part of the name. This could only be done statically (i.e. the first part would always be cut off, even if you increase the width of the side bar) because VS Code doesn't offer any APIs for influencing how it ellipsizes the texts in a tree view. If this is desired, it should be done by the test adapter, it can specify the full name for the tooltip here.
First off, thanks for this nice extension.
The PHP plugin shows the entire FQCN of the test case class, which makes items in the tree very long. This in turn makes it hard to reach the button to navigate to the source - which I didn't even know existed and I wanted to report an issue about it, until I discovered #69.
An example to demonstrate how long the test names are:
Would it be possible to ellipsize long test names (and e.g. show the full name in a tooltip on hover), or ellipsize the first part of the name (as the last part is usually the most important)? The idea is that there would be no horizontal scrollbar and the action buttons would always be visible on hover to the right. This would be similar to what the Tree Style Tabs extension does in Firefox:
Thanks!
The text was updated successfully, but these errors were encountered: