From 0a91a3f6c488a1382f6942470cbf57d22248b282 Mon Sep 17 00:00:00 2001 From: John Cowen Date: Tue, 6 Oct 2020 14:26:55 +0100 Subject: [PATCH] Fixup node tests to account for new runtime env var passing (#8817) --- ui-v2/node-tests/config/environment.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui-v2/node-tests/config/environment.js b/ui-v2/node-tests/config/environment.js index 63de1091c..30f3b3f2c 100644 --- a/ui-v2/node-tests/config/environment.js +++ b/ui-v2/node-tests/config/environment.js @@ -9,9 +9,9 @@ test( { environment: 'production', CONSUL_BINARY_TYPE: 'oss', - CONSUL_ACLS_ENABLED: false, - CONSUL_SSO_ENABLED: false, - CONSUL_NSPACES_ENABLED: false, + CONSUL_ACLS_ENABLED: '__RUNTIME_BOOL_ACLsEnabled__', + CONSUL_SSO_ENABLED: '__RUNTIME_BOOL_SSOEnabled__', + CONSUL_NSPACES_ENABLED: '__RUNTIME_BOOL_NSpacesEnabled__', }, { environment: 'test',