-
Notifications
You must be signed in to change notification settings - Fork 61
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move mocha view to test view container #100
Conversation
I see PR is already submitted #97 So closing mine |
Hi thanks for the PR. |
@maty21 Agreed. But at the end of the day it is an user choice. Regarding extension authors able to show their view in explorer or other viewlet, there is an open issue here - microsoft/vscode#48704. I think |
For example we have a feature that check if something break after file saving . |
You mean using decorations in the files? |
Decoration is for cases that you editing the tests and you want to make sure that the specific case is running ok in the next couple of days will add this feature and in order to support the two views we will have to do something tricky until you will add the feature you mentioned Microsoft/vscode#48704. |
I'd like to join the discussion with some insights. Personally I am developing 80% of my time on my Macbook hence screen real estate is very important to me. Considering I have a ton of test cases the respective test view can be bloated at times. Since I work in a workspace with about 10 project folders and have the open editors view I surely do not have the space to fit the mocha view under the project explorer. On top that I assume a change in your code will not only affect a single test and most likely an entire group. It's not as if there is only one icon to track 😄 |
Not sure if I get it. What is the interaction between file explorer and mocha view here? If I understand correctly, this is an interaction between the editor and the mocha view |
There's no direct interction , the main view when you writing code is the explorer and therefore is more convenient to see them at the same view as I mentioned before that's the preferred view on every IDE that I used |
For closing this issue I add this feature and also had a way via config to move back to the explorer mode |
@sandy081 issue that I currently have is that my tests are rendered only when the user selects the test view and therefore lenses and decoration will not be shown until the test view will be rendered |
I do not think editor decorations and code lenses depend on test view rendering? They are two independent features. May be is your code not getting activated until the test view is open? |
Hi,
I am developer from VS Code and recently we added a new test view container. Refer to the release notes here.
I am going through the popular extensions in the market place those contribute test related custom views and moving those view to Test view container.
I would request to accept this PR and publish the extension with changes.
Thanks
This change is