Skip to content

Commit 94a2d60

Browse files
committed
..
1 parent cfd7101 commit 94a2d60

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

src/test/runTest.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@ async function main() {
3939
}
4040
if (installResult.status !== 0) {
4141
console.error(`Extension installation failed with exit code: ${installResult.status}`);
42+
if (installResult.stderr) {
43+
console.error('[DEBUG] stderr:', installResult.stderr.toString());
44+
}
45+
if (installResult.stdout) {
46+
console.error('[DEBUG] stdout:', installResult.stdout.toString());
47+
}
4248
}
4349
} else {
4450
console.log('[DEBUG] Non-Windows detected');
@@ -58,6 +64,12 @@ async function main() {
5864
}
5965
if (installResult.status !== 0) {
6066
console.error(`Extension installation failed with exit code: ${installResult.status}`);
67+
if (installResult.stderr) {
68+
console.error('[DEBUG] stderr:', installResult.stderr.toString());
69+
}
70+
if (installResult.stdout) {
71+
console.error('[DEBUG] stdout:', installResult.stdout.toString());
72+
}
6173
}
6274
}
6375
console.log('Extensions installed, ready to run tests.');

0 commit comments

Comments
 (0)