File tree 1 file changed +5
-0
lines changed
arduino-ide-extension/src/test/node
1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -103,12 +103,15 @@ describe('clang-formatter', () => {
103
103
toDispose = new DisposableCollection (
104
104
Disposable . create ( ( ) => tracked . cleanupSync ( ) )
105
105
) ;
106
+ console . log ( 'TEST creating container...' ) ;
106
107
const container = await createBaseContainer ( {
107
108
additionalBindings : ( bind ) =>
108
109
bind ( ClangFormatter ) . toSelf ( ) . inSingletonScope ( ) ,
109
110
} ) ;
111
+ console . log ( 'TEST starting daemon...' ) ;
110
112
await startDaemon ( container , toDispose ) ;
111
113
formatter = container . get < ClangFormatter > ( ClangFormatter ) ;
114
+ console . log ( 'TEST before all complete...' ) ;
112
115
} ) ;
113
116
114
117
after ( ( ) => toDispose . dispose ( ) ) ;
@@ -122,7 +125,9 @@ describe('clang-formatter', () => {
122
125
it ( `should execute the formatter with a single ${
123
126
Array . isArray ( value ) ? 'array' : typeof value
124
127
} type style configuration value: ${ styleArg } `, async ( ) => {
128
+ console . log ( 'TEST single line formatter...' ) ;
125
129
await expectNoChanges ( formatter , styleArg ) ;
130
+ console . log ( 'TEST finish single line formatter...' ) ;
126
131
} )
127
132
) ;
128
133
You can’t perform that action at this time.
0 commit comments