1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-13 23:22:49 +02: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
}
})
.catch(() => {})
.catch(() => {
isSolutionSuccess = false
})
}
await Promise.all(solutionTestsResultsPromises)
await TemporaryFolder.cleanAll()