From 653567f8e2674d18c2d2faa7cae02fa3968f04ab Mon Sep 17 00:00:00 2001 From: Yisroel Baum Date: Sun, 2 Nov 2025 22:44:37 +0200 Subject: [PATCH] set baseUrl for e2e testing --- cypress.config.js | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/cypress.config.js b/cypress.config.js index 97f47c4..f4dd400 100644 --- a/cypress.config.js +++ b/cypress.config.js @@ -1,9 +1,7 @@ const { defineConfig } = require("cypress"); module.exports = defineConfig({ - e2e: { - setupNodeEvents(on, config) { - // implement node event listeners here + e2e: { + baseUrl: 'http://localhost:8000', }, - }, });