summaryrefslogtreecommitdiff
path: root/test/integration
diff options
context:
space:
mode:
authormo khan <mo@mokhan.ca>2025-07-25 11:10:22 -0600
committermo khan <mo@mokhan.ca>2025-07-25 11:10:22 -0600
commitef4ee5ad1ffc9e4aedb2151449d8d39bc696d280 (patch)
tree8db393808ab9b25b01b4675c87eb22893c22d387 /test/integration
parent106403fd8d3071dd8513661a110bedf85fb4591d (diff)
test: add missing env vars to end-to-end tests
Diffstat (limited to 'test/integration')
-rw-r--r--test/integration/container_test.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/integration/container_test.go b/test/integration/container_test.go
index 99c161d..ecfd2b1 100644
--- a/test/integration/container_test.go
+++ b/test/integration/container_test.go
@@ -21,9 +21,12 @@ func environmentVariables(srv *web.OIDCServer) map[string]string {
"APP_ENV": "test",
"DEBUG": env.Fetch("DEBUG", ""),
"HMAC_SESSION_SECRET": "secret",
+ "LOG_LEVEL": "debug",
"OAUTH_CLIENT_ID": srv.MockOIDC.ClientID,
"OAUTH_CLIENT_SECRET": srv.MockOIDC.ClientSecret,
"OIDC_ISSUER": srv.Issuer(),
+ "ZED_ENDPOINT": ":50051",
+ "ZED_TOKEN": "secret",
}
}