fix - Status code of the test completion is not handled correctly (#1716)

This commit is contained in:
Sheng Chen 2024-07-29 14:21:33 +08:00 коммит произвёл GitHub
Родитель b0b1e62ad6
Коммит ad4b37c752
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: B5690EEEBB952194
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -363,7 +363,7 @@ async function executeWithTestRunner(option: IRunOption, testRunner: TestRunner,
}));
disposables.push(testRunner.onDidFinishTestRun((event: TestFinishEvent) => {
if (event.statusCode !== 0) {
if (event.statusCode === 2) { // See: https://build-server-protocol.github.io/docs/specification#statuscode
window.showErrorMessage(event.message ?? 'Failed to run tests.');
}
return resolve();