1
1
mirror of https://github.com/theoludwig/programming-challenges.git synced 2025-05-18 12:02:53 +02:00

fix(cli): correctly set test isSuccess false

This commit is contained in:
2024-11-18 08:05:00 +01:00
parent db15155137
commit 2b6669bf4a

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()