fierce-engineer-40904
09/27/2022, 2:13 PMjs
cypress:
container_name: cypress
image: cypress/included:10.8.0
tty: true
volumes:
- "./:/name"
working_dir: /name
js
cypress.config.js
- e2e: {
baseUrl: 'http://localhost:3000',
},
video: false,
port: 3000,
I can find my tests but it never connects to localhost:3000 (i have another container running on 3000 as to where the tests should be run hence the port 3000 in config file).
Also, running docker compose up cypress
has a default entrypoint of cypress run
how would I go about to change that to cypress open
?