pest icon indicating copy to clipboard operation
pest copied to clipboard

[Feature] Browser testing support for external playwright server

Open daniel100097 opened this issue 4 weeks ago • 1 comments

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"]

daniel100097 avatar Dec 10 '25 15:12 daniel100097