Skip to content

Commit

Permalink
debugs
Browse files Browse the repository at this point in the history
  • Loading branch information
J3fftw1 committed Nov 21, 2023
1 parent 06c0ec9 commit c0e792e
Showing 1 changed file with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,9 +94,14 @@ public void runTests(@Nonnull String packageName) {
logMessage("caught exception");
if (e.getCause() instanceof TestFailException) {
logMessage("test fail exception");
throw (TestFailException) e.getCause();
testsFailed++;
logMessage(" x %s", description);
e.printStackTrace();
} else {
testsFailed++;
logMessage(" x %s", description);
e.printStackTrace();
}
throw new RuntimeException(e);
}
});
logMessage("we are waiting");
Expand Down

0 comments on commit c0e792e

Please sign in to comment.