TestCafe docker - Run tests against app running on hosts localhost
问题 I have a local dev server running on Mac OS on localhost:3000 I want to be able to run testcafe tests in the docker container, pointing to the app running on the Mac host. Test code: fixture('<Page>') .page(`localhost:3000/page-test`) I've tried docker run --network="host" which should make Mac's localhost accessible, but no success. Have also read, host.docker.internal or docker.for.mac.localhost can be used inside the container, but there is no way for me to access, modify the image