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:
parent
db15155137
commit
2b6669bf4a
@ -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()
|
||||||
|
Loading…
Reference in New Issue
Block a user