We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4b36942 commit 7c0caf7Copy full SHA for 7c0caf7
packages/test-harness/src/scripts/runVscodeTestsCI.ts
@@ -14,5 +14,11 @@ void (async () => {
14
"packages/test-harness/dist/extensionTestsVscode.cjs",
15
);
16
17
- await launchVscodeAndRunTests(extensionTestsPath);
+ 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
+ }
24
})();
0 commit comments