Skip to content

Commit b844556

Browse files
Testing
1 parent bec6793 commit b844556

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

arduino-ide-extension/src/test/node/clang-formatter.test.ts

+5
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)