1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2024-12-08 00:45:29 +01:00

fix(cli): correctly set test isSuccess false

This commit is contained in:
Théo LUDWIG 2024-11-18 08:05:00 +01:00
parent db15155137
commit 2b6669bf4a
Signed by: theoludwig
GPG Key ID: ADFE5A563D718F3B

View File

@ -85,7 +85,9 @@ export class Test implements TestOptions {
isSolutionSuccess = false isSolutionSuccess = false
} }
}) })
.catch(() => {}) .catch(() => {
isSolutionSuccess = false
})
} }
await Promise.all(solutionTestsResultsPromises) await Promise.all(solutionTestsResultsPromises)
await TemporaryFolder.cleanAll() await TemporaryFolder.cleanAll()