https://cypress.io logo
So your error says, that it can't find the e2e-tes...
# e2e-testing
c
So your error says, that it can't find the e2e-test files. When you run your container, you mount your current working directory (of your terminal) with the
e2e
folder of your docker container. You do that via the parameter
-v $PWD:/e2e
. You do that, so that everything in your
e2e
-folder locally is available in your container. Is the linking of your
e2e
folder done correctly? Is it pointing to the correct folder?