@@ -9,10 +9,8 @@ import { CommandContribution } from '@theia/core/lib/common/command';
9
9
import { bindViewContribution } from '@theia/core/lib/browser/shell/view-contribution' ;
10
10
import { TabBarToolbarContribution } from '@theia/core/lib/browser/shell/tab-bar-toolbar' ;
11
11
import { WebSocketConnectionProvider } from '@theia/core/lib/browser/messaging/ws-connection-provider' ;
12
- import {
13
- FrontendApplicationContribution ,
14
- FrontendApplication as TheiaFrontendApplication ,
15
- } from '@theia/core/lib/browser/frontend-application' ;
12
+ import { FrontendApplication as TheiaFrontendApplication } from '@theia/core/lib/browser/frontend-application' ;
13
+ import { FrontendApplicationContribution } from '@theia/core/lib/browser/frontend-application-contribution' ;
16
14
import { LibraryListWidget } from './library/library-list-widget' ;
17
15
import { ArduinoFrontendContribution } from './arduino-frontend-contribution' ;
18
16
import {
@@ -275,7 +273,7 @@ import {
275
273
IDEUpdaterDialog ,
276
274
IDEUpdaterDialogProps ,
277
275
} from './dialogs/ide-updater/ide-updater-dialog' ;
278
- import { ElectronIpcConnectionProvider } from '@theia/core/lib/electron-browser/messaging/electron-ipc-connection-provider ' ;
276
+ import { ElectronIpcConnectionProvider } from '@theia/core/lib/electron-browser/messaging/electron-ipc-connection-source ' ;
279
277
import { MonitorModel } from './monitor-model' ;
280
278
import { MonitorManagerProxyClientImpl } from './monitor-manager-proxy-client-impl' ;
281
279
import { EditorManager as TheiaEditorManager } from '@theia/editor/lib/browser/editor-manager' ;
@@ -295,10 +293,6 @@ import { PreferenceTreeGenerator } from './theia/preferences/preference-tree-gen
295
293
import { PreferenceTreeGenerator as TheiaPreferenceTreeGenerator } from '@theia/preferences/lib/browser/util/preference-tree-generator' ;
296
294
import { AboutDialog } from './theia/core/about-dialog' ;
297
295
import { AboutDialog as TheiaAboutDialog } from '@theia/core/lib/browser/about-dialog' ;
298
- import {
299
- SurveyNotificationService ,
300
- SurveyNotificationServicePath ,
301
- } from '../common/protocol/survey-service' ;
302
296
import { WindowContribution } from './theia/core/window-contribution' ;
303
297
import { WindowContribution as TheiaWindowContribution } from '@theia/core/lib/browser/window-contribution' ;
304
298
import { CoreErrorHandler } from './contributions/core-error-handler' ;
@@ -394,6 +388,8 @@ import {
394
388
VersionWelcomeDialog ,
395
389
VersionWelcomeDialogProps ,
396
390
} from './dialogs/version-welcome-dialog' ;
391
+ import { TestViewContribution as TheiaTestViewContribution } from '@theia/test/lib/browser/view/test-view-contribution' ;
392
+ import { TestViewContribution } from './theia/test/test-view-contribution' ;
397
393
398
394
// Hack to fix copy/cut/paste issue after electron version update in Theia.
399
395
// https://github.com/eclipse-theia/theia/issues/12487
@@ -574,15 +570,6 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
574
570
WorkspaceVariableContribution
575
571
) ;
576
572
577
- bind ( SurveyNotificationService )
578
- . toDynamicValue ( ( context ) => {
579
- return ElectronIpcConnectionProvider . createProxy (
580
- context . container ,
581
- SurveyNotificationServicePath
582
- ) ;
583
- } )
584
- . inSingletonScope ( ) ;
585
-
586
573
// Layout and shell customizations.
587
574
rebind ( TheiaOutlineViewContribution )
588
575
. to ( OutlineViewContribution )
@@ -1113,6 +1100,10 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
1113
1100
) ;
1114
1101
1115
1102
bindViewsWelcome_TheiaGH14309 ( { bind, widget : TreeViewWidget } ) ;
1103
+
1104
+ // Hides the Test Explorer from the side-bar
1105
+ bind ( TestViewContribution ) . toSelf ( ) . inSingletonScope ( ) ;
1106
+ rebind ( TheiaTestViewContribution ) . toService ( TestViewContribution ) ;
1116
1107
} ) ;
1117
1108
1118
1109
// Align the viewsWelcome rendering with VS Code (https://github.com/eclipse-theia/theia/issues/14309)
0 commit comments