-
Notifications
You must be signed in to change notification settings - Fork 498
Closed
@jeremyriverain
Description
Hi,
I just created a Vue app using the npm init vue
command.
Capture d’écran du 2022年05月06日 09-58-34
When I run the test:e2
and test:e2e:ci
commands on my machine, Cypress does not run after starting the server.
These errors are fixed when I replace http://127.0.0.1:5050/
with tcp:5050
in test:e2e
and test:e2e:ci
scripts.
This means replacing:
{ "scripts": { "test:e2e": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress open'", "test:e2e:ci": "start-server-and-test preview http://127.0.0.1:5050/ 'cypress run'", } }
with:
{ "scripts": { "test:e2e": "start-server-and-test preview tcp:5050 'cypress open'", "test:e2e:ci": "start-server-and-test preview tcp:5050 'cypress run'", } }
fixed these errors.
Do you agree ? Can I create a pull request to fix this error?
Metadata
Metadata
Assignees
Labels
No labels