File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
arduino-ide-extension/src/test/node Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -103,12 +103,15 @@ describe('clang-formatter', () => {
103103 toDispose = new DisposableCollection (
104104 Disposable . create ( ( ) => tracked . cleanupSync ( ) )
105105 ) ;
106+ console . log ( 'TEST creating container...' ) ;
106107 const container = await createBaseContainer ( {
107108 additionalBindings : ( bind ) =>
108109 bind ( ClangFormatter ) . toSelf ( ) . inSingletonScope ( ) ,
109110 } ) ;
111+ console . log ( 'TEST starting daemon...' ) ;
110112 await startDaemon ( container , toDispose ) ;
111113 formatter = container . get < ClangFormatter > ( ClangFormatter ) ;
114+ console . log ( 'TEST before all complete...' ) ;
112115 } ) ;
113116
114117 after ( ( ) => toDispose . dispose ( ) ) ;
@@ -122,7 +125,9 @@ describe('clang-formatter', () => {
122125 it ( `should execute the formatter with a single ${
123126 Array . isArray ( value ) ? 'array' : typeof value
124127 } type style configuration value: ${ styleArg } `, async ( ) => {
128+ console . log ( 'TEST single line formatter...' ) ;
125129 await expectNoChanges ( formatter , styleArg ) ;
130+ console . log ( 'TEST finish single line formatter...' ) ;
126131 } )
127132 ) ;
128133
You can’t perform that action at this time.
0 commit comments