Hi, I’m currently trying to run Pest v4 together with browser testing.
I’m using Docker and the PHP-FPM container from Docker Hub. I’d rather not install Node.js in there, and Microsoft already provides a Docker image for Playwright.
Is there a feature where I can just provide the WebSocket URL in order to skip all the Playwright checks?
playwright:
image: mcr.microsoft.com/playwright:v1.57.0-noble
container_name: playwright-server
ports:
- "9222:9222"
shm_size: "2gb"
command: ["npx", "playwright", "run-server", "--host", "0.0.0.0", "--port", "9222", "--mode", "launchServer"]