tests: testing all db interactions and types

This commit is contained in:
Per Stark
2025-04-14 17:24:04 +02:00
parent d10157ac26
commit 3d420582dc
19 changed files with 3017 additions and 71 deletions
+4 -1
View File
@@ -12,7 +12,7 @@ tracing = { workspace = true }
anyhow = { workspace = true }
thiserror = { workspace = true }
serde_json = { workspace = true }
surrealdb = { workspace = true }
surrealdb = { workspace = true, features = ["kv-mem"] }
async-openai = { workspace = true }
futures = { workspace = true }
@@ -35,3 +35,6 @@ minijinja = { version = "2.5.0", features = ["loader", "multi_template"] }
minijinja-autoreload = "2.5.0"
minijinja-embed = { version = "2.8.0" }
minijinja-contrib = { version = "2.6.0", features = ["datetime", "timezone"] }
[features]
test-utils = []