From fa76f4201ebe564e04d60a016435f7e1c924bea2 Mon Sep 17 00:00:00 2001 From: danjov Date: Thu, 16 Mar 2023 18:14:16 +0100 Subject: [PATCH] Use 127.0.0.1 instead of localhost for polling The issue was caused by a configuration change by webpack. See https://github.com/cypress-io/github-action/issues/534 --- src/ClientApp/package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ClientApp/package.json b/src/ClientApp/package.json index 4634293..c4c9a41 100644 --- a/src/ClientApp/package.json +++ b/src/ClientApp/package.json @@ -42,7 +42,7 @@ "prestart": "node aspnetcore-https && node aspnetcore-react", "start": "rimraf ./build && react-scripts start", "build": "react-scripts build", - "test": "start-server-and-test start http-get://localhost:44472 cy:run", + "test": "start-server-and-test start http-get://127.0.0.1:44472 cy:run", "eject": "react-scripts eject", "lint": "eslint ./src/ && eslint ./cypress/", "cy:run": "cypress run",