Skip to content

Commit 7c0caf7

Browse files
More messages
1 parent 4b36942 commit 7c0caf7

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/test-harness/src/scripts/runVscodeTestsCI.ts

+7-1
Original file line numberDiff line numberDiff line change
@@ -14,5 +14,11 @@ void (async () => {
1414
"packages/test-harness/dist/extensionTestsVscode.cjs",
1515
);
1616

17-
await launchVscodeAndRunTests(extensionTestsPath);
17+
try {
18+
await launchVscodeAndRunTests(extensionTestsPath);
19+
} catch (error) {
20+
const errorMessage = error instanceof Error ? error.message : String(error);
21+
console.log(error);
22+
console.error(errorMessage);
23+
}
1824
})();

0 commit comments

Comments
 (0)