Skip to content

Troubleshooting

Debugging Playwright tests

To enable full debug output for http and TLS data:

shell
NODE_DEBUG=tls,http npx playwright test

Routes haven't been tested for authorized access exception

If you get a warning about an untested route when running tests/Routes/UntestedRoutesRoutePermissionTest.php and you're pretty sure you wrote a test for it, check the namespace of the new route permission test. It should start with Tests\Routes and be a valid namespace matching the directory. If it doesn't, it can't be detected and is ignored when checking for untested routes.

See https://github.com/paratestphp/paratest#caveats for more information.