diff auth/test/BUILD @ 264:04fee26ecce0

add authenticated JRPG conversation platform Add reusable auth/session storage, owned conversation recovery, guest quotas, admin workflows, URL-routed conversation UI, mobile frame support, and parallel browser acceptance. Co-authored-by: Copilot <[email protected]>
author MrJuneJune <me@mrjunejune.com>
date Fri, 07 Aug 2026 07:34:12 -0700
parents
children
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/auth/test/BUILD	Fri Aug 07 07:34:12 2026 -0700
@@ -0,0 +1,20 @@
+load("@rules_cc//cc:cc_test.bzl", "cc_test")
+
+cc_test(
+  name = "auth_crypto_test",
+  srcs = ["auth_crypto_test.c"],
+  deps = ["//auth:auth_crypto"],
+  size = "small",
+)
+
+cc_test(
+  name = "auth_store_test",
+  srcs = ["auth_store_test.c"],
+  deps = [
+    "//auth:auth_crypto",
+    "//auth:auth_store",
+    "//deita:deita",
+  ],
+  size = "medium",
+  timeout = "moderate",
+)