Return tests to passing now that we don't ignore a critical event...
This commit is contained in:
parent
09832cc558
commit
0621d8475d
14 changed files with 44 additions and 60 deletions
|
@ -28,7 +28,11 @@ class TestResponse extends IlluminateTestResponse
|
|||
if ($actual !== $status && $status !== 500) {
|
||||
$this->dump();
|
||||
if (!is_null($this->exception) && !$this->exception instanceof DisplayException && !$this->exception instanceof ValidationException) {
|
||||
dump($this->exception);
|
||||
dump([
|
||||
'exception_class' => get_class($this->exception),
|
||||
'message' => $this->exception->getMessage(),
|
||||
'trace' => $this->exception->getTrace(),
|
||||
]);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Reference in a new issue