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) {