From 248edf9d88e286db9b62563160f74a371bf09489 Mon Sep 17 00:00:00 2001 From: alexm Date: Mon, 10 Feb 2025 08:16:05 +0100 Subject: [PATCH] test: refs #6695 e2e fix base urls --- cypress.config.js | 5 ++--- docker-compose.e2e.yml | 8 ++++---- quasar.config.js | 2 +- 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/cypress.config.js b/cypress.config.js index 8ba6ce74d..b549aadbe 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -4,9 +4,8 @@ import { defineConfig } from 'cypress'; // https://docs.cypress.io/app/references/configuration // https://www.npmjs.com/package/cypress-mochawesome-reporter -// const baseUrl = `http://${process.env.NETWORK ? 'front' : 'localhost'}:9000`; -const baseUrl = `http://front:9000`; -console.log('process.env.NETWORK: ', process.env.NETWORK); +const baseUrl = `http://${process.env.NETWORK ? 'front' : 'localhost'}:9000`; +// const baseUrl = `http://front:9000`; export default defineConfig({ e2e: { diff --git a/docker-compose.e2e.yml b/docker-compose.e2e.yml index e15428016..6ffe90bcc 100644 --- a/docker-compose.e2e.yml +++ b/docker-compose.e2e.yml @@ -14,12 +14,12 @@ services: volumes: - .:/app working_dir: /app - # ports: - # - '9000:9000' + ports: + - '9000:9000' e2e: image: alexmorenovn/vndev:latest - # command: pnpm exec cypress run --browser chromium - command: sh -c "pnpm exec cypress install && pnpm exec cypress run --browser chromium" + command: pnpm exec cypress run --browser chromium + # command: sh -c "pnpm exec cypress install && pnpm exec cypress run --browser chromium" volumes: - .:/app working_dir: /app diff --git a/quasar.config.js b/quasar.config.js index b3e0bc82a..37768ebf6 100644 --- a/quasar.config.js +++ b/quasar.config.js @@ -11,7 +11,7 @@ import { configure } from 'quasar/wrappers'; import VueI18nPlugin from '@intlify/unplugin-vue-i18n/vite'; import path from 'path'; -const target = `http://${process.env.NETWORK || 'localhost'}:3000`; +const target = `http://${process.env.NETWORK ? 'back' : 'localhost'}:3000`; export default configure(function (/* ctx */) { return {