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', },