Skip to content

Commit 75609f3

Browse files
committed
add logging
1 parent 646fe7c commit 75609f3

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/test/runTest.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ async function main() {
2020
// Use cp.spawn / cp.exec for custom setup
2121
if (getOSType() === OSType.Windows) {
2222
const exec = path.basename(cliPath);
23+
console.log(`Using ${exec} to run tests`);
2324
cp.spawnSync(
2425
exec,
2526
[...args, '--install-extension', PVSC_EXTENSION_ID_FOR_TESTS, PVSC_ENVS_EXTENSION_ID_FOR_TESTS],
@@ -39,6 +40,7 @@ async function main() {
3940
},
4041
);
4142
}
43+
console.log('Extensions installed, ready to run tests.');
4244

4345
// Run the extension test
4446
await runTests({

0 commit comments

Comments
 (0)