mirror of
https://github.com/pestphp/pest.git
synced 2026-03-06 07:47:22 +01:00
feat: support for deprecated, notices, and warnings
This commit is contained in:
@ -61,9 +61,11 @@ final class TestSkippedSubscriber extends Subscriber implements SkippedSubscribe
|
||||
*/
|
||||
public function notify(Skipped $event): void
|
||||
{
|
||||
str_contains($event->message(), '__TODO__')
|
||||
? $this->printTodoItem()
|
||||
: $this->printer()->testSkipped();
|
||||
if (str_contains($event->message(), '__TODO__')) {
|
||||
$this->printTodoItem();
|
||||
}
|
||||
|
||||
$this->printer()->testSkipped();
|
||||
}
|
||||
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user