-
Hi Team, I am currently using Theia and need help removing the VSCode Testing Plugin from my environment. Despite my attempts, I haven’t been able to find a way to fully remove or disable this internal plugin. Specifically: How do I remove the VSCode Testing Plugin from Theia? Thanks in advance for your support! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hey @Yahud100, Can you give a bit more context? What is the VSCode Testing Plugin you're talking about? Are you using the TheiaIDE or building your own app? |
Beta Was this translation helpful? Give feedback.
-
i am aiming to remove this from my project , could you please tell me , how its achievable |
Beta Was this translation helpful? Give feedback.
The test view doesn't come from a plugin, but is part of the VS Code testing API, which plugins can use to provide testing features to Theia/VSCode.
You can use the contribution filter API to filter out any contribution that you don't want included in your application. More specifically, you probably want to exclude this contribution:
theia/packages/test/src/browser/view/test-view-contribution.ts
Lines 137 to 139 in 998bf47