diff --git a/src/KoalamonReporter.php b/src/KoalamonReporter.php index d35794b..0b888b5 100644 --- a/src/KoalamonReporter.php +++ b/src/KoalamonReporter.php @@ -1,4 +1,5 @@ config['server']; } - $reporter = new Reporter('', $this->getApiKey(), new Client(), $koalamonServer); + $reporter = new WebhookReporter($this->getApiKey(), new Client(), $koalamonServer); $url = $this->getUrl(); @@ -156,7 +157,7 @@ public function suite() $status = Event::STATUS_FAILURE; } else { $status = Event::STATUS_SUCCESS; - $message = ''; + $message = 'All Codeception tests in collection "' . $testCollection . '" succeeded.'; } $system = $this->getSystem();