You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Otherwise make sure to shutdown anyway even in case of an error
581
581
else{
582
-
this._gracefulExit(1/* ERROR */);
582
+
this._testRunnerExit(1/* ERROR */);
583
583
}
584
584
585
585
returnPromise.reject(newError(requireError ? requireError.toString() : nls.localize('extensionTestError',"Path {0} does not point to a valid extension test runner.",extensionTestsPath)));
586
586
}
587
587
588
-
private_gracefulExit(code: number): void{
589
-
// to give the PH process a chance to flush any outstanding console
590
-
// messages to the main process, we delay the exit() by some time
591
-
setTimeout(()=>{
592
-
// If extension tests are running, give the exit code to the renderer
0 commit comments