Hi, I'm able to use XDEBUG on a normal HTTP request but i'm not able to stop the debugger on pest test. I'm using "sail" for managing my dev environment. I was looking the pest command in the bin/sail file https://github.com/laravel/sail/blob/1.x/bin/sail#L305-L314 and looks like is only missing XDEBUG_SESSION=1 to work. I tried it like an plain docker compose command and it works
docker-compose exec -u sail -e XDEBUG_SESSION=1 laravel.test php vendor/bin/pest
If this is a good idea what should be the best way to suggest this change? Should I do a PR?
Also notice there is sail debug but is only for artisan commands so what would be the best way of unify this?
Last but not least I'm using nvim as my editor. Not very important now that I manage to have xdebug working using dap