From 1bf953bbcf971bf811bdfc7b25b238e3a3b80d2e Mon Sep 17 00:00:00 2001 From: Landon Grindheim Date: Wed, 4 May 2022 18:24:06 +0000 Subject: [PATCH] Remove unneeded calls to shutdown the proxy --- __tests__/proxy-integration.test.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/__tests__/proxy-integration.test.ts b/__tests__/proxy-integration.test.ts index d73c78a..c5fbe56 100644 --- a/__tests__/proxy-integration.test.ts +++ b/__tests__/proxy-integration.test.ts @@ -112,8 +112,6 @@ integration('ProxyBuilder', () => { const proc = spawnSync('docker', ['exec', id, 'printenv', 'http_proxy']) const output = proc.stdout.toString().trim() expect(output).toMatch(url) - - await proxy.shutdown() }) jest.setTimeout(20000) @@ -128,7 +126,5 @@ integration('ProxyBuilder', () => { const proc = spawnSync('docker', ['exec', id, 'printenv', 'https_proxy']) const output = proc.stdout.toString().trim() expect(output).toEqual(url) - - await proxy.shutdown() }) })