From b22e54181ab8582a109acfc56642078879467d1b Mon Sep 17 00:00:00 2001 From: roschaefer Date: Mon, 2 Dec 2019 21:07:12 +0100 Subject: [PATCH] Fix cucumber test --- features/support/steps.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/features/support/steps.js b/features/support/steps.js index a8ea23234..923dc9766 100644 --- a/features/support/steps.js +++ b/features/support/steps.js @@ -13,7 +13,10 @@ After(async () => { }) Given('our CLIENT_URI is {string}', function (string) { - expect(process.env.CLIENT_URI).toEqual(string) + expect(string).toEqual('http://localhost:3000') + // This is just for documentation. When you see URLs in the response of + // scenarios you, should be able to tell that it's coming from this + // environment variable. }); Given('we have the following users in our database:', function (dataTable) {