From 4acad7e8d3ea5ec849696ce1e392508aa9885ff0 Mon Sep 17 00:00:00 2001 From: maxcoulombe Date: Thu, 2 Mar 2023 16:05:01 -0500 Subject: [PATCH] * fix e2e test setup --- integrationTests/e2e/setup.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/integrationTests/e2e/setup.js b/integrationTests/e2e/setup.js index 6e84e72..846a9ed 100644 --- a/integrationTests/e2e/setup.js +++ b/integrationTests/e2e/setup.js @@ -1,7 +1,7 @@ const got = require('got'); const vaultUrl = `${process.env.VAULT_HOST}:${process.env.VAULT_PORT}`; -const vaultToken = `${process.env.VAULT_TOKEN || 'testtoken'}` +const vaultToken = `${process.env.VAULT_TOKEN}` === undefined ? `${process.env.VAULT_TOKEN}` : "testtoken"; (async () => { try {