From 0e925a6dc5a88470659d28f0809772e4f450766f Mon Sep 17 00:00:00 2001 From: Felix Luthman <34520175+felixlut@users.noreply.github.com> Date: Fri, 27 Jan 2023 18:26:23 +0100 Subject: [PATCH] Update proxy.test.ts --- packages/http-client/__tests__/proxy.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/http-client/__tests__/proxy.test.ts b/packages/http-client/__tests__/proxy.test.ts index 48516226..3b4fad80 100644 --- a/packages/http-client/__tests__/proxy.test.ts +++ b/packages/http-client/__tests__/proxy.test.ts @@ -152,7 +152,7 @@ describe('proxy', () => { }) it('checkBypass returns true if host with leading dot in no_proxy', () => { - process.env['no_proxy'] = '.myserver.com' + process.env['no_proxy'] = '.myserver.com' const bypass = pm.checkBypass(new URL('https://myserver.com')) expect(bypass).toBeTruthy() })