diff options
| author | mo khan <mo@mokhan.ca> | 2025-05-09 12:52:01 -0600 |
|---|---|---|
| committer | mo khan <mo@mokhan.ca> | 2025-05-11 21:21:38 -0600 |
| commit | 275dd00a2987b283c4d78f076b3d33a00795c9cd (patch) | |
| tree | c5dc4a7c0b37b955f8058be02fd7484e39cd9eea | |
| parent | 339bf1e9d493fe315116746e2574eace410fb70d (diff) | |
test: provide secrets to get envoy started
| -rw-r--r-- | test/integration/container_test.go | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/container_test.go b/test/integration/container_test.go index dfe1b52..ff2c914 100644 --- a/test/integration/container_test.go +++ b/test/integration/container_test.go @@ -26,6 +26,7 @@ func TestContainer(t *testing.T) { container, err := testcontainers.GenericContainer(ctx, testcontainers.GenericContainerRequest{ ContainerRequest: testcontainers.ContainerRequest{ Image: image, + Env: map[string]string{"HMAC_SESSION_SECRET": "secret", "OAUTH_CLIENT_SECRET": "secret"}, ExposedPorts: []string{"8080/tcp", "9901/tcp", "10000/tcp"}, WaitingFor: wait.ForLog("Listening on"), }, |
