Skip to content

Commit 2b6669b

Browse files
committed
fix(cli): correctly set test isSuccess false
1 parent db15155 commit 2b6669b

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

cli/services/Test.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,9 @@ export class Test implements TestOptions {
8585
isSolutionSuccess = false
8686
}
8787
})
88-
.catch(() => {})
88+
.catch(() => {
89+
isSolutionSuccess = false
90+
})
8991
}
9092
await Promise.all(solutionTestsResultsPromises)
9193
await TemporaryFolder.cleanAll()

0 commit comments

Comments
 (0)