We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a13c04 commit 1762a4bCopy full SHA for 1762a4b
1 file changed
tests/api_tests.rs
@@ -9,7 +9,8 @@ async fn spawn_server(auth_enabled: bool) -> (String, String) {
9
config.host = "127.0.0.1".to_string();
10
config.port = 0; // Random port
11
config.auth_enabled = auth_enabled;
12
-
+ config.use_memory_store = true; // Use memory store for tests (no IPFS dependency)
13
+
14
// Set a secret for auth tests
15
let jwt_secret = "test-secret-123".to_string();
16
config.jwt_secret = Some(jwt_secret.clone());
0 commit comments