DEV Community

Kerry Owston
Kerry Owston

Posted on

More info on ambiguous 500 errors

While Pest testing in a laravel project I get a 500 HTTP error. Great now what? How can I get more detail from this generic gem?

You can eek out a little more information with this:

$this->withoutExceptionHandling();

Whichh I placed at the top of my test.

It's kind of like:

dd();

But for errors.

Top comments (0)