From 7ec7a219b394844cbf3a5f36c3010f6bd933ac2d Mon Sep 17 00:00:00 2001 From: Christopher Kolstad Date: Wed, 28 Apr 2021 09:47:44 +0200 Subject: [PATCH] fix: update expected text --- src/test/e2e/custom-auth.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/e2e/custom-auth.test.ts b/src/test/e2e/custom-auth.test.ts index 3e61844163..c37bbab021 100644 --- a/src/test/e2e/custom-auth.test.ts +++ b/src/test/e2e/custom-auth.test.ts @@ -20,7 +20,7 @@ test('Using custom auth type without defining custom middleware causes default D .expect(res => { t.is( res.body.error, - 'You have to configure a custom authentication middleware. Read the docs....', + 'You have to configure a custom authentication middleware. Read https://docs.getunleash.io/docs/deploy/configuring_unleash for more details', ); }); });