Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
cliviu committed Jan 6, 2025
1 parent 8740176 commit 4672d65
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,6 @@ public void onFinish(ISuite suite) {
dataTable = null;
}
logger.info("Finishing Suite " + suite.getName());
//TODO
//eventBusFor(suite.).testSuiteFinished();
generateReports(suite);
}

Expand All @@ -107,7 +105,7 @@ public void onExecutionStart() {
*/
@Override
public void onExecutionFinish() {
System.out.println("On Execution finish");
logger.info("On Execution finish");
StepEventBus.getEventBus().testSuiteFinished();
}

Expand Down Expand Up @@ -136,6 +134,7 @@ public void onTestStart(ITestResult result) {
if (!isSerenityTestNGClass(result)) {
return;
}
//TODO optimize
injectSteps(result.getInstance());
startTestSuiteForFirstTest(result);
//stepEventBus().clear();
Expand Down

0 comments on commit 4672d65

Please sign in to comment.