-
Notifications
You must be signed in to change notification settings - Fork 493
Closed
Description
Hi,
I just created a Vue app using the npm init vue
command.
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?
IsoMetrixAssessor and vincerubinetti
Metadata
Metadata
Assignees
Labels
No labels