@@ -5,10 +5,8 @@ import { CommandContribution } from '@theia/core/lib/common/command';
5
5
import { bindViewContribution } from '@theia/core/lib/browser/shell/view-contribution' ;
6
6
import { TabBarToolbarContribution } from '@theia/core/lib/browser/shell/tab-bar-toolbar' ;
7
7
import { WebSocketConnectionProvider } from '@theia/core/lib/browser/messaging/ws-connection-provider' ;
8
- import {
9
- FrontendApplicationContribution ,
10
- FrontendApplication as TheiaFrontendApplication ,
11
- } from '@theia/core/lib/browser/frontend-application' ;
8
+ import { FrontendApplication as TheiaFrontendApplication } from '@theia/core/lib/browser/frontend-application' ;
9
+ import { FrontendApplicationContribution } from '@theia/core/lib/browser/frontend-application-contribution' ;
12
10
import { LibraryListWidget } from './library/library-list-widget' ;
13
11
import { ArduinoFrontendContribution } from './arduino-frontend-contribution' ;
14
12
import {
@@ -266,7 +264,7 @@ import {
266
264
IDEUpdaterDialog ,
267
265
IDEUpdaterDialogProps ,
268
266
} from './dialogs/ide-updater/ide-updater-dialog' ;
269
- import { ElectronIpcConnectionProvider } from '@theia/core/lib/electron-browser/messaging/electron-ipc-connection-provider ' ;
267
+ import { ElectronIpcConnectionProvider } from '@theia/core/lib/electron-browser/messaging/electron-ipc-connection-source ' ;
270
268
import { MonitorModel } from './monitor-model' ;
271
269
import { MonitorManagerProxyClientImpl } from './monitor-manager-proxy-client-impl' ;
272
270
import { EditorManager as TheiaEditorManager } from '@theia/editor/lib/browser/editor-manager' ;
@@ -286,10 +284,6 @@ import { PreferenceTreeGenerator } from './theia/preferences/preference-tree-gen
286
284
import { PreferenceTreeGenerator as TheiaPreferenceTreeGenerator } from '@theia/preferences/lib/browser/util/preference-tree-generator' ;
287
285
import { AboutDialog } from './theia/core/about-dialog' ;
288
286
import { AboutDialog as TheiaAboutDialog } from '@theia/core/lib/browser/about-dialog' ;
289
- import {
290
- SurveyNotificationService ,
291
- SurveyNotificationServicePath ,
292
- } from '../common/protocol/survey-service' ;
293
287
import { WindowContribution } from './theia/core/window-contribution' ;
294
288
import { WindowContribution as TheiaWindowContribution } from '@theia/core/lib/browser/window-contribution' ;
295
289
import { CoreErrorHandler } from './contributions/core-error-handler' ;
@@ -372,6 +366,8 @@ import { DebugSessionWidget } from '@theia/debug/lib/browser/view/debug-session-
372
366
import { DebugConfigurationWidget } from './theia/debug/debug-configuration-widget' ;
373
367
import { DebugConfigurationWidget as TheiaDebugConfigurationWidget } from '@theia/debug/lib/browser/view/debug-configuration-widget' ;
374
368
import { DebugToolBar } from '@theia/debug/lib/browser/view/debug-toolbar-widget' ;
369
+ import { TestViewContribution as TheiaTestViewContribution } from '@theia/test/lib/browser/view/test-view-contribution' ;
370
+ import { TestViewContribution } from './theia/test/test-view-contribution' ;
375
371
376
372
// Hack to fix copy/cut/paste issue after electron version update in Theia.
377
373
// https://github.com/eclipse-theia/theia/issues/12487
@@ -552,15 +548,6 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
552
548
WorkspaceVariableContribution
553
549
) ;
554
550
555
- bind ( SurveyNotificationService )
556
- . toDynamicValue ( ( context ) => {
557
- return ElectronIpcConnectionProvider . createProxy (
558
- context . container ,
559
- SurveyNotificationServicePath
560
- ) ;
561
- } )
562
- . inSingletonScope ( ) ;
563
-
564
551
// Layout and shell customizations.
565
552
rebind ( TheiaOutlineViewContribution )
566
553
. to ( OutlineViewContribution )
@@ -1082,4 +1069,8 @@ export default new ContainerModule((bind, unbind, isBound, rebind) => {
1082
1069
rebind ( TheiaTerminalFrontendContribution ) . toService (
1083
1070
TerminalFrontendContribution
1084
1071
) ;
1072
+
1073
+ // Hides the Test Explorer from the side-bar
1074
+ bind ( TestViewContribution ) . toSelf ( ) . inSingletonScope ( ) ;
1075
+ rebind ( TheiaTestViewContribution ) . toService ( TestViewContribution ) ;
1085
1076
} ) ;
0 commit comments