From a35f70ab3dcc9ee3ccebbc13c09254cab4aa524a Mon Sep 17 00:00:00 2001 From: Rodrigo Rodriguez Date: Fri, 20 Feb 2026 01:14:09 +0000 Subject: [PATCH] fix: Update test harness and e2e tests --- src/harness.rs | 2 +- tests/e2e/mod.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/harness.rs b/src/harness.rs index 4834681..fe50725 100644 --- a/src/harness.rs +++ b/src/harness.rs @@ -465,7 +465,7 @@ impl BotServerInstance { pub async fn start_with_main_stack() -> Result { let port = 8080; - let url = "https://localhost:8080".to_string(); + let url = "https://localhost:9000".to_string(); let botserver_bin = std::env::var("BOTSERVER_BIN") .unwrap_or_else(|_| "../botserver/target/debug/botserver".to_string()); diff --git a/tests/e2e/mod.rs b/tests/e2e/mod.rs index 2bc5447..2f2c077 100644 --- a/tests/e2e/mod.rs +++ b/tests/e2e/mod.rs @@ -37,7 +37,7 @@ async fn is_service_running(url: &str) -> bool { impl E2ETestContext { pub async fn setup() -> anyhow::Result { let botserver_url = - std::env::var("BOTSERVER_URL").unwrap_or_else(|_| "https://localhost:8080".to_string()); + std::env::var("BOTSERVER_URL").unwrap_or_else(|_| "https://localhost:9000".to_string()); let botui_url = std::env::var("BOTUI_URL").unwrap_or_else(|_| "http://localhost:3000".to_string()); @@ -86,7 +86,7 @@ impl E2ETestContext { pub async fn setup_with_browser() -> anyhow::Result { let botserver_url = - std::env::var("BOTSERVER_URL").unwrap_or_else(|_| "https://localhost:8080".to_string()); + std::env::var("BOTSERVER_URL").unwrap_or_else(|_| "https://localhost:9000".to_string()); let botui_url = std::env::var("BOTUI_URL").unwrap_or_else(|_| "http://localhost:3000".to_string());