Skip to content

Commit

Permalink
Fix e2e failures due to Node17+ upgrade in github actions (#1219)
Browse files Browse the repository at this point in the history
See cypress-io/github-action#534 (comment) (thanks @charlie-tf )

The default webpack configuration's host value was changed from localhost to 127.0.0.1 to support the Node 17+ changes with how DNS names are resolved. Addressed in cypress-io/cypress#21430.
  • Loading branch information
karthikbtf authored Feb 20, 2023
1 parent f6808d2 commit cc329da
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@
"generate-types": "node -r esm scripts/openapi-typescript-formatter.js",
"cy:run": "TZ=UTC cypress run",
"cy": "TZ=UTC cypress open",
"e2e": "start-server-and-test start:dev http://localhost:3000 cy:run && yarn e2e:report",
"e2e": "start-server-and-test start:dev http://127.0.0.1:3000 cy:run && yarn e2e:report",
"e2e:report": "npx nyc report --reporter=text",
"license-report": "license-report --only=prod --department.value=terraware --relatedTo.value=terraware-web --output=html > docs/license-report.html",
"lint": "tslint --project tsconfig.json",
Expand Down

1 comment on commit cc329da

@vercel
Copy link

@vercel vercel bot commented on cc329da Feb 20, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.