From a4dcb8a64a61f1de8ea539392d3ede8368ff9cf0 Mon Sep 17 00:00:00 2001 From: Mali Oz Date: Tue, 28 May 2024 14:11:12 -0300 Subject: [PATCH] localhost --> 0.0.0.0 --- .env.cypress | 2 +- cypress.config.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.env.cypress b/.env.cypress index 93c97fa..707567e 100644 --- a/.env.cypress +++ b/.env.cypress @@ -2,7 +2,7 @@ APP_NAME=notaR APP_ENV=local APP_KEY= APP_DEBUG=false -APP_URL=http://localhost:8000 +APP_URL=http://0.0.0.0:8000 APP_SCHEME=http APP_SERVICE=app APP_TIMEZONE='America/Sao_Paulo' diff --git a/cypress.config.js b/cypress.config.js index 31f9c28..e307556 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -12,7 +12,7 @@ module.exports = defineConfig({ setupNodeEvents(on, config) { return require('./tests/cypress/plugins/index.js')(on, config) }, - baseUrl: 'http://localhost:8000', + baseUrl: 'http://0.0.0.0:8000', specPattern: 'tests/cypress/integration/**/*.cy.{js,jsx,ts,tsx}', supportFile: 'tests/cypress/support/index.js', },