diff --git a/examples/hello-world/cypress.config.js b/examples/hello-world/cypress.config.js index 55ec66734..fc8d4a197 100644 --- a/examples/hello-world/cypress.config.js +++ b/examples/hello-world/cypress.config.js @@ -6,7 +6,7 @@ export default defineConfig({ setupNodeEvents(on, config) { // implement node event listeners here }, - baseUrl: 'http://localhost:8080', + baseUrl: 'http://localhost:8083', specPattern: 'cypress/e2e/**/*.{js,jsx,ts,tsx}', }, }) diff --git a/examples/hello-world/package.json b/examples/hello-world/package.json index f425d7114..1d5cd904a 100644 --- a/examples/hello-world/package.json +++ b/examples/hello-world/package.json @@ -13,8 +13,8 @@ "test:node": "node ./index.mjs", "cypress:open": "npx cypress open", "cypress:run": "npx cypress run", - "start": "http-server", - "test:browser": "start-server-and-test start http://localhost:8080 cypress:run" + "start": "http-server -p 8083", + "test:browser": "start-server-and-test start http://localhost:8083 cypress:run" }, "author": "Matt McCormick ", "license": "Apache-2.0",