upleb.uk

Public git repos — served from a NIP-34 GRASP relay at git.upleb.uk

summaryrefslogtreecommitdiff
path: root/grasp-audit/src
diff options
context:
space:
mode:
Diffstat (limited to 'grasp-audit/src')
-rw-r--r--grasp-audit/src/specs/nip01_smoke.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/grasp-audit/src/specs/nip01_smoke.rs b/grasp-audit/src/specs/nip01_smoke.rs
index 20f80ea..5fddf5d 100644
--- a/grasp-audit/src/specs/nip01_smoke.rs
+++ b/grasp-audit/src/specs/nip01_smoke.rs
@@ -295,9 +295,9 @@ mod tests {
295 #[tokio::test] 295 #[tokio::test]
296 #[ignore] // Ignore by default since it needs a running relay 296 #[ignore] // Ignore by default since it needs a running relay
297 async fn test_smoke_tests_against_relay() { 297 async fn test_smoke_tests_against_relay() {
298 // Use RELAY_URL env var if set, otherwise default to localhost:7000 298 // RELAY_URL env var must be set - no default fallback
299 let relay_url = std::env::var("RELAY_URL") 299 let relay_url = std::env::var("RELAY_URL")
300 .unwrap_or_else(|_| "ws://localhost:7000".to_string()); 300 .expect("RELAY_URL environment variable must be set for integration tests");
301 301
302 let config = AuditConfig::ci(); 302 let config = AuditConfig::ci();
303 let client = AuditClient::new(&relay_url, config) 303 let client = AuditClient::new(&relay_url, config)