This repository has been archived by the owner on Dec 14, 2018. It is now read-only.
This release brings a little enhancement: ability to override errors for test results in extended reporters:
For example, we want to pass the only causedBy throwables to allure reports:
public class ExtAllureReporter extends AllureReporter {
@Override
public Throwable getError(Result result) {
return result.getError().getCause();
}
}