I am using playwright v1.30 to run component tests on Mac using docker image. I had set PLAYWRIGHT_DOCKER to "true" as a flag for the integration between playwright and docker (as mentioned in this PR description). I am currently trying to upgrade to v1.40 but I don't see that flag being consumed anymore.
I was looking at the source code of v1.30 and could see files like docker, dockerApi, dockerPlugin but these seem to be removed in v1.40.
I am not sure how I can ensure that my tests are run on an ubuntu docker image (in Mac). Is this still possible? How can I make this work?
Context:
Describe the bug
I am using playwright v1.30 to run component tests on Mac using docker image. I had set
PLAYWRIGHT_DOCKER
to"true"
as a flag for the integration between playwright and docker (as mentioned in this PR description). I am currently trying to upgrade to v1.40 but I don't see that flag being consumed anymore.I was looking at the source code of v1.30 and could see files like docker, dockerApi, dockerPlugin but these seem to be removed in v1.40.
I am not sure how I can ensure that my tests are run on an ubuntu docker image (in Mac). Is this still possible? How can I make this work?